mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
13 lines
285 B
TypeScript
13 lines
285 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
include: ['tests/**/*.test.ts'],
|
|
reporters: ['default', 'junit'],
|
|
outputFile: {
|
|
junit: '.codeflash/vitest-results.xml',
|
|
},
|
|
},
|
|
});
|