Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
fix: IE10/11 timeout issues.
Browse files Browse the repository at this point in the history
IE10/11 would timeout if we don't give it time to breath. This change has accidentally prevented of clearing the stack.
  • Loading branch information
mhevery committed Aug 22, 2016
1 parent 55f8150 commit 382182c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/jasmine/jasmine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@
const QueueRunner = (jasmine as any).QueueRunner as { new(attrs: QueueRunnerAttrs): QueueRunner };
(jasmine as any).QueueRunner = class ZoneQueueRunner extends QueueRunner {
constructor(attrs: QueueRunnerAttrs) {
attrs.clearStack = (fn) => fn(); // Don't clear since onComplete will clear.
attrs.onComplete = ((fn) => () => {
// All functions are done, clear the test zone.
testProxyZone = null;
Expand Down

0 comments on commit 382182c

Please sign in to comment.