Expose fit and fdescribe in boot.js

* adds done() callbacks to existing specs (because we forgot, whoops!)

[Finishes #73742944]
This commit is contained in:
Greg Cobb and Tim Jarratt
2014-08-28 16:37:37 -07:00
parent 9afae3d978
commit 14824b5f9e
3 changed files with 18 additions and 2 deletions

View File

@@ -63,6 +63,10 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
return env.xdescribe(description, specDefinitions);
},
fdescribe: function(description, specDefinitions) {
return env.fdescribe(description, specDefinitions);
},
it: function(desc, func) {
return env.it(desc, func);
},
@@ -71,6 +75,10 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
return env.xit(desc, func);
},
fit: function(desc, func) {
return env.fit(desc, func);
},
beforeEach: function(beforeEachFunction) {
return env.beforeEach(beforeEachFunction);
},