Skip to content

Commit

Permalink
increase test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
matepek committed Nov 20, 2018
1 parent 81c459d commit c3fc8d7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/test/C2TestAdapter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ describe('C2TestAdapter', function() {
sinonSandbox.restore();
})

beforeEach(function reset() {
beforeEach(function() {
this.timeout(6000);
adapter = undefined;

fse.removeSync(dotVscodePath);
Expand All @@ -203,7 +204,8 @@ describe('C2TestAdapter', function() {
return resetConfig();
})

afterEach(async function() {
afterEach(function() {
this.timeout(6000);
disposeAdapterAndSubscribers();
})

Expand Down

0 comments on commit c3fc8d7

Please sign in to comment.