Removed expect/expectAsync indirection through spec/suite

This commit is contained in:
Steve Gravrock
2023-06-21 19:23:54 -07:00
parent f8e4ea868f
commit 59600a1c29
4 changed files with 16 additions and 40 deletions

View File

@@ -70,14 +70,6 @@ getJasmineRequireObj().Spec = function(j$) {
this.result.properties[key] = value;
};
Spec.prototype.expect = function(actual) {
return this.expectationFactory(actual, this);
};
Spec.prototype.expectAsync = function(actual) {
return this.asyncExpectationFactory(actual, this);
};
Spec.prototype.execute = function(
queueRunnerFactory,
onComplete,