mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-05 23:29:00 +02:00
837c1d6218
GitOrigin-RevId: 1262f9f32a0db6a29d3feedd8158b8dd04e48b6a
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,
|
|
},
|
|
})
|