Files
mcpctl/src/db/vitest.config.ts

11 lines
252 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vitest/config';
2026-02-21 03:10:39 +00:00
export default defineConfig({
2026-02-21 03:10:39 +00:00
test: {
name: 'db',
include: ['tests/**/*.test.ts'],
// Schema pushed once by globalSetup before any tests.
globalSetup: ['tests/global-setup.ts'],
2026-02-21 03:10:39 +00:00
},
});