mirror of
https://github.com/Azure/k8s-set-context.git
synced 2026-04-17 22:42:16 +08:00
21 lines
413 B
TypeScript
21 lines
413 B
TypeScript
import {defineConfig} from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['**/*.test.ts'],
|
|
restoreMocks: true,
|
|
clearMocks: true,
|
|
mockReset: true,
|
|
coverage: {
|
|
provider: 'v8',
|
|
thresholds: {
|
|
statements: 22,
|
|
branches: 0,
|
|
functions: 40,
|
|
lines: 22
|
|
}
|
|
}
|
|
}
|
|
})
|