Skip to content

Commit 3527225

Browse files
committed
test(core): reduce test flakiness by increasing time delta
This commit updates an expected delta range for a duration of a view transition to reduce flakiness of that test.
1 parent 0b6084e commit 3527225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/test/zone/ng_zone_spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ function commonTests() {
977977
});
978978
});
979979
await transition.finished;
980-
expect(performance.now() - startTime).toBeLessThan(1000);
980+
expect(performance.now() - startTime).toBeLessThan(2000);
981981
});
982982

983983
describe('shouldCoalesceRunChangeDetection = false, shouldCoalesceEventChangeDetection = false', () => {

0 commit comments

Comments
 (0)