Skip to content

Commit

Permalink
test(timing): relax mac/webkit expectations (#4217)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman authored Oct 23, 2020
1 parent b3b46db commit 14f069e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/resource-timing.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ it('should work for SSL', async ({ browser, httpsServer, isMac, isWebKit }) => {
expect(timing.connectStart).toBeGreaterThanOrEqual(timing.domainLookupEnd);
expect(timing.secureConnectionStart).toBeGreaterThan(timing.connectStart);
expect(timing.connectEnd).toBeGreaterThan(timing.secureConnectionStart);
expect(timing.requestStart).toBeGreaterThanOrEqual(timing.connectEnd);
}
expect(timing.requestStart).toBeGreaterThanOrEqual(timing.connectEnd);
expect(timing.responseStart).toBeGreaterThan(timing.requestStart);
expect(timing.responseEnd).toBeGreaterThanOrEqual(timing.responseStart);
expect(timing.responseEnd).toBeLessThan(10000);
Expand Down

0 comments on commit 14f069e

Please sign in to comment.