Temporarily removed global error handler stack validation

This fails somewhat frequently (every 2-4 runs of Jasmine's own test
suite) on Safari. Until we get to the bottom of that, it's removed.
This commit is contained in:
Steve Gravrock
2021-03-14 11:46:23 -07:00
parent de91427356
commit 8d0c52e2ec
3 changed files with 0 additions and 22 deletions

View File

@@ -101,12 +101,6 @@ getJasmineRequireObj().GlobalErrors = function(j$) {
throw new Error('popListener expects a listener');
}
if (listener !== handlers[handlers.length - 1]) {
throw new Error(
'popListener was passed a different listener than the current one'
);
}
handlers.pop();
};
}