We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9d1e3e commit 781707aCopy full SHA for 781707a
vitest.config.ts
@@ -7,7 +7,13 @@ export default defineConfig({
7
setupFiles: ['dotenv/config', 'disposablestack/auto'],
8
maxConcurrency: 1, // Disable concurrency to avoid nonce errors
9
fileParallelism: false,
10
- hookTimeout: 120000, // 120 seconds for setup hooks (Docker containers)
+ pool: 'forks',
11
+ poolOptions: {
12
+ forks: {
13
+ singleFork: true,
14
+ },
15
16
+ hookTimeout: 300000, // 300 seconds for setup hooks (Docker containers in CI)
17
},
18
ssr: {
19
noExternal: ['@trufnetwork/kwil-js'],
0 commit comments