Top level suite no longer reports suiteStart and suiteDone

- jasmineStart and jasmineDone are reported separately

Fixes #716
This commit is contained in:
slackersoft
2014-11-28 21:25:45 -08:00
parent 55f32e2dc6
commit 9f94e8e226
3 changed files with 3 additions and 30 deletions

View File

@@ -179,13 +179,7 @@ getJasmineRequireObj().Env = function(j$) {
env: this,
id: getNextSuiteId(),
description: 'Jasmine__TopLevel__Suite',
queueRunner: queueRunnerFactory,
onStart: function(suite) {
reporter.suiteStarted(suite.result);
},
resultCallback: function(attrs) {
reporter.suiteDone(attrs);
}
queueRunner: queueRunnerFactory
});
runnableLookupTable[topSuite.id] = topSuite;
defaultResourcesForRunnable(topSuite.id);