Add fit and fdescribe to the public interface

They got lost in the merge
This commit is contained in:
slackersoft
2014-09-25 13:19:13 -07:00
parent 1fb0d2eefa
commit 15ae0379ec
2 changed files with 16 additions and 0 deletions

View File

@@ -8,6 +8,10 @@ getJasmineRequireObj().interface = function(jasmine, env) {
return env.xdescribe(description, specDefinitions);
},
fdescribe: function(description, specDefinitions) {
return env.fdescribe(description, specDefinitions);
},
it: function(desc, func) {
return env.it(desc, func);
},
@@ -16,6 +20,10 @@ getJasmineRequireObj().interface = function(jasmine, env) {
return env.xit(desc, func);
},
fit: function(desc, func) {
return env.fit(desc, func);
},
beforeEach: function(beforeEachFunction) {
return env.beforeEach(beforeEachFunction);
},