Skip to content

Commit 1cedd83

Browse files
committed
Increase timeout
1 parent 406dc66 commit 1cedd83

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

js/tests/runtimes/bun/run.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ test('Bun test', async () => {
1010
} finally {
1111
await sbx.kill()
1212
}
13-
})
13+
}, { timeout: 30_000 })

js/tests/runtimes/deno/run.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Deno.test('Deno test', async () => {
1313
} finally {
1414
await sbx.kill()
1515
}
16-
})
16+
}, { timeout: 30_000 })

js/vitest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default defineConfig({
1414
include: ['tests/**/*.test.ts'],
1515
exclude: ['tests/runtimes/**'],
1616
globals: false,
17-
testTimeout: 20000,
17+
testTimeout: 30000,
1818
environment: 'node',
1919
bail: 1,
2020
server: {},

0 commit comments

Comments
 (0)