combo/vitest.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
346 B
JavaScript
Raw Permalink Normal View History

2023-11-24 08:46:07 +01:00
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
include: 'tests/js/**/*.test.js',
watchExclude: ['**'],
coverage: {
include: ['combo/**/*.js'],
all: true,
reporter: ['cobertura', 'html'],
},
environment: 'happy-dom'
}
})