Merge branch 'gdborton-afterAll-order'

- Merges #1312 from @gdborton
- Fixes #1311
This commit is contained in:
Gregg Van Hove
2017-04-10 13:36:24 -07:00
3 changed files with 23 additions and 3 deletions

View File

@@ -4592,7 +4592,7 @@ getJasmineRequireObj().Suite = function(j$) {
};
Suite.prototype.afterAll = function(fn) {
this.afterAllFns.push(fn);
this.afterAllFns.unshift(fn);
};
Suite.prototype.addChild = function(child) {