| 12345678910111213141516171819202122232425 |
- const { defineConfig } = require('vitest/config')
- let reporterOptions = {}
- if (process.env.CI) {
- reporterOptions = {
- reporters: [
- 'default',
- [
- 'junit',
- {
- classnameTemplate: `Unit tests.{filename}`,
- },
- ],
- ],
- outputFile: 'reports/junit-vitest-unit.xml',
- }
- }
- module.exports = defineConfig({
- test: {
- include: ['test/unit/js/*.test.{js,ts}'],
- setupFiles: ['./test/unit/setup.js'],
- isolate: true,
- ...reporterOptions,
- },
- })
|