Replace unshift with splice (unshift not IE-safe)
This commit is contained in:
parent
46249bf515
commit
462b50e84e
|
@ -25,12 +25,12 @@ jasmine.Runner.prototype.execute = function() {
|
||||||
|
|
||||||
jasmine.Runner.prototype.beforeEach = function(beforeEachFunction) {
|
jasmine.Runner.prototype.beforeEach = function(beforeEachFunction) {
|
||||||
beforeEachFunction.typeName = 'beforeEach';
|
beforeEachFunction.typeName = 'beforeEach';
|
||||||
this.before_.unshift(beforeEachFunction);
|
this.before_.splice(0,0,beforeEachFunction);
|
||||||
};
|
};
|
||||||
|
|
||||||
jasmine.Runner.prototype.afterEach = function(afterEachFunction) {
|
jasmine.Runner.prototype.afterEach = function(afterEachFunction) {
|
||||||
afterEachFunction.typeName = 'afterEach';
|
afterEachFunction.typeName = 'afterEach';
|
||||||
this.after_.unshift(afterEachFunction);
|
this.after_.splice(0,0,afterEachFunction);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue