Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Fix failing test (#4392)
Browse files Browse the repository at this point in the history
#### PR checklist

- [X] Addresses an existing issue: #4391 

#### Overview of change:

Fix test that failed locally because it took too long. Not sure why this is only becoming an issue now - could be something that got added, but for now we may as well get 5.12 released and then figure it out.
  • Loading branch information
johnwiseheart committed Dec 18, 2018
1 parent 4e63f35 commit 9c6a832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/executable/executableTests.ts
Expand Up @@ -39,7 +39,7 @@ const dummyLogger: Logger = {

describe("Executable", function(this: Mocha.ISuiteCallbackContext) {
this.slow(3000); // the executable is JIT-ed each time it runs; avoid showing slowness warnings
this.timeout(4000);
this.timeout(10000);

describe("Files", () => {
it("exits with code 1 if no arguments passed", done => {
Expand Down

0 comments on commit 9c6a832

Please sign in to comment.