test: allow slower render e2e cases

This commit is contained in:
Ousama Ben Younes
2026-07-08 00:35:32 +00:00
committed by Steven
parent aef3b774fc
commit 44b558ff94
+5 -1
View File
@@ -1,8 +1,12 @@
import { defineConfig } from 'vitest/config';
const TEST_FILE_PATTERNS = ['tests/**/*.test.ts'];
const TEST_TIMEOUT_MS = 30_000;
export default defineConfig({
test: {
include: ['tests/**/*.test.ts'],
include: TEST_FILE_PATTERNS,
environment: 'node',
testTimeout: TEST_TIMEOUT_MS,
},
});