mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
[monorepo] move notifications changes into buildscripts GitOrigin-RevId: b5948702627d0bc87bffd3acc3d7c2ab9f4ac23d
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
const { defineConfig } = require('vitest/config')
|
|
|
|
module.exports = defineConfig({
|
|
test: {
|
|
include: ['test/unit/js/**/*.test.js'],
|
|
setupFiles: ['./test/setup.js'],
|
|
isolate: false,
|
|
},
|
|
})
|