This was already done for everything except spec cleanup fns, since the various skip policies need to know the difference between afterEach and afterAll.
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
getJasmineRequireObj().NeverSkipPolicy = function(j$) {
|
|
function NeverSkipPolicy(queueableFns) {}
|
|
|
|
NeverSkipPolicy.prototype.skipTo = function(lastRanFnIx) {
|
|
return lastRanFnIx + 1;
|
|
};
|
|
|
|
NeverSkipPolicy.prototype.fnErrored = function(fnIx) {};
|
|
|
|
return NeverSkipPolicy;
|
|
};
|