Skip to content

Commit

Permalink
[APM] Higher timeout for flaky abort test (#90728) (#90789)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgieselaar authored Feb 9, 2021
1 parent 34cf90e commit d155cdd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ describe('createApmEventClient', () => {
incomingRequest.on('abort', () => {
setTimeout(() => {
resolve(undefined);
}, 0);
}, 100);
});
incomingRequest.abort();
}, 50);
}, 100);
});

expect(abort).toHaveBeenCalled();
Expand Down

0 comments on commit d155cdd

Please sign in to comment.