Skip to content

Commit

Permalink
bump test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed May 5, 2018
1 parent 85ae44b commit e93e633
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-tests/__tests__/detect_open_handles.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function getTextAfterTest(stderr) {
}

it('prints message about flag on slow tests', () => {
const {stderr} = runJest('detect-open-handles', [], undefined, 2500);
const {stderr} = runJest('detect-open-handles', [], undefined, 3000);
const textAfterTest = getTextAfterTest(stderr);

expect(textAfterTest).toMatchSnapshot();
Expand All @@ -40,7 +40,7 @@ it('prints message about flag on forceExit', () => {
'detect-open-handles',
['--forceExit'],
undefined,
2500,
3000,
);
const textAfterTest = getTextAfterTest(stderr);

Expand All @@ -52,7 +52,7 @@ it('prints out info about open handlers', () => {
'detect-open-handles',
['--detectOpenHandles'],
undefined,
2500,
3000,
);
const textAfterTest = getTextAfterTest(stderr);

Expand Down

0 comments on commit e93e633

Please sign in to comment.