Deprecate suite/spec ordering hook .

- Remove parameter from env.execute()
- Remove deprecated test
- Set runnablesToRun to always start with the topSuite

[#66789174]
This commit is contained in:
Christopher Amavisca and Greg Cobb
2014-03-06 16:14:13 -08:00
parent bed1c15ea4
commit 76fafa0388
3 changed files with 4 additions and 42 deletions

View File

@@ -188,8 +188,8 @@ getJasmineRequireObj().Env = function(j$) {
return topSuite;
};
this.execute = function(runnablesToRun) {
runnablesToRun = runnablesToRun || [topSuite.id];
this.execute = function() {
var runnablesToRun = [topSuite.id];
var allFns = [];
for(var i = 0; i < runnablesToRun.length; i++) {