mirror of
https://github.com/docker/setup-compose-action.git
synced 2026-03-04 11:42:42 +01:00
17 lines
356 B
TypeScript
17 lines
356 B
TypeScript
import {defineConfig} from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
clearMocks: true,
|
|
environment: 'node',
|
|
setupFiles: ['./__tests__/setup.unit.ts'],
|
|
include: ['**/*.test.ts'],
|
|
coverage: {
|
|
provider: 'v8',
|
|
reporter: ['clover'],
|
|
include: ['src/**/*.ts'],
|
|
exclude: ['src/**/main.ts']
|
|
}
|
|
}
|
|
});
|