beforeAll can have expectations and passes expectation failures to its children

[#66789174]
This commit is contained in:
Christopher Amavisca and Greg Cobb
2014-03-05 16:27:58 -08:00
parent a9e0112a9b
commit a3c3505086
6 changed files with 82 additions and 3 deletions

View File

@@ -225,6 +225,7 @@ getJasmineRequireObj().Env = function(j$) {
parentSuite: currentDeclarationSuite,
queueRunner: queueRunnerFactory,
onStart: suiteStarted,
expectationFactory: expectationFactory,
resultCallback: function(attrs) {
if (!suite.disabled) {
clearResourcesForRunnable(suite.id);
@@ -330,7 +331,7 @@ getJasmineRequireObj().Env = function(j$) {
};
this.expect = function(actual) {
return currentSpec.expect(actual);
return currentRunnable().expect(actual);
};
this.beforeEach = function(beforeEachFunction) {