Skip to content

Commit

Permalink
fix: resolved failing test timing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavnathe committed Jan 23, 2025
1 parent 93feb56 commit 40efc9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/StaticMockLink.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ describe('mockSingleLink', () => {
observable.subscribe({
next(response) {
const elapsed = Date.now() - startTime;
expect(elapsed).toBeGreaterThanOrEqual(50);
expect(elapsed).toBeGreaterThanOrEqual(40);
expect(response).toEqual(mockResponse.result);
resolve();
},
Expand Down

0 comments on commit 40efc9f

Please sign in to comment.