mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
13 lines
276 B
JavaScript
13 lines
276 B
JavaScript
const { defineConfig } = require('vitest/config')
|
|
|
|
module.exports = defineConfig({
|
|
test: {
|
|
include: [
|
|
'modules/*/test/unit/**/*.test.mjs',
|
|
'test/unit/src/**/*.test.mjs',
|
|
],
|
|
setupFiles: ['./test/unit/vitest_bootstrap.mjs'],
|
|
globals: true,
|
|
},
|
|
})
|