mirror of
https://github.com/docker/metadata-action.git
synced 2026-03-04 07:58:16 +00: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']
|
|
}
|
|
}
|
|
});
|