mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
const { defineConfig } = require('vitest/config')
|
|
|
|
module.exports = defineConfig({
|
|
test: {
|
|
include: ['test/unit/js/**/*.test.{js,ts}'],
|
|
setupFiles: ['./test/setup.js'],
|
|
isolate: false,
|
|
},
|
|
})
|