diff --git a/src/cli/utils.ts b/src/cli/utils.ts index c334260..831689e 100644 --- a/src/cli/utils.ts +++ b/src/cli/utils.ts @@ -181,8 +181,9 @@ export const runTests = async () => { } // Our tests are more like integration tests than unit tests. Taking two seconds is - // pretty reasonable in our case. + // pretty reasonable in our case and it's possible a successful test would take 10 seconds. mocha.slow(2000); + mocha.timeout(10000); // Run the tests. await new Promise((resolve, reject) =>