cal.pub0.org/vitest.config.ts

13 lines
211 B
TypeScript
Raw Normal View History

import { defineConfig } from "vitest/config";
process.env.INTEGRATION_TEST_MODE = "true";
export default defineConfig({
test: {
coverage: {
2023-08-30 13:46:35 +00:00
provider: "v8",
},
2023-08-30 13:46:35 +00:00
testTimeout: 500000,
},
});