Skip to content

Commit 48bb284

Browse files
authored
bump Mocha timeout to 30sec for CI (#1271)
1 parent ff5e569 commit 48bb284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/testing.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function run() {
1818
const mocha = new Mocha({
1919
color: true,
2020
ui: "bdd",
21-
timeout: 10_000,
21+
timeout: process.env.CI !== null ? 30_000 : 10_000,
2222
reporter: "mocha-multi-reporters",
2323
reporterOptions: {
2424
reporterEnabled: "spec, mocha-junit-reporter",

0 commit comments

Comments
 (0)