1
0
Fork 0
mirror of synced 2026-06-05 12:44:04 +00:00
configure-aws-credentials/vitest.config.mts
2025-02-04 15:05:30 -08:00

10 lines
245 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
passWithNoTests: true,
include: ['test/**/*.test.ts'],
coverage: { enabled: true },
typecheck: { tsconfig: './tsconfig.test.json' },
},
});