Files
pinme/vitest.mutation.config.ts
junchi.zhang ce345f46e4 test: add CI-backed verification suite and harden create flow
- add Vitest, coverage, CLI, package, and mutation test commands
- add GitHub Actions verify, mutation, and audit workflows
- document testing policy and contributor commands
- replace curl template download with streamed retryable axios helper
- improve background install exit-code handling and tracker error reasons
2026-06-22 18:03:41 +08:00

24 lines
495 B
TypeScript

import { mergeConfig } from 'vitest/config';
import baseConfig from './vitest.config';
export default mergeConfig(baseConfig, {
test: {
include: [
'test/unit/**/*.{test,spec}.ts',
'test/integration/**/*.{test,spec}.ts',
'test/login-tracking-source.test.mjs',
'tests/**/*.{test,spec}.mjs',
],
exclude: [
'node_modules',
'dist',
'coverage',
'reports',
'.stryker-tmp',
'test/cli/**',
'test/pack/**',
],
},
});