Skip to content

Commit

Permalink
vscode-extension: longer timeout on tests because it takes a bit long…
Browse files Browse the repository at this point in the history
…er to start in my VM than it used to
  • Loading branch information
joshtynjala committed Oct 17, 2017
1 parent 6dfaa55 commit d245e81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vscode-extension/src/test/ts/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ suite("NextGenAS extension", () =>
{
assert.ok(extension.isActive, `Extension "${extensionName}" not active!`);
done();
}, 3500);
}, 5000);
});
});

Expand Down
2 changes: 1 addition & 1 deletion vscode-extension/src/test/ts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ testRunner.configure(
{
ui: "tdd",
useColors: true,
timeout: 5000
timeout: 6000
});

module.exports = testRunner;

0 comments on commit d245e81

Please sign in to comment.