All checks were successful
JavaScriptUtilsVitest / ci-tests (push) Successful in 18s
21 lines
289 B
JavaScript
21 lines
289 B
JavaScript
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
include: [
|
|
'tests/**/*.{test,spec}.?(c|m)[jt]s?(x)'
|
|
],
|
|
// exclude: [],
|
|
coverage: {
|
|
include: [
|
|
'src/',
|
|
],
|
|
exclude: [
|
|
'src/utils.mjs',
|
|
]
|
|
}
|
|
},
|
|
});
|