mirror of
https://github.com/Azure/setup-helm.git
synced 2026-05-07 14:21:14 +00:00
11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
|
|
import {defineConfig} from 'vitest/config'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
globals: true,
|
||
|
|
environment: 'node',
|
||
|
|
include: ['**/*.test.ts'],
|
||
|
|
clearMocks: true
|
||
|
|
}
|
||
|
|
})
|