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