Expose fit and fdescribe in boot.js
* adds done() callbacks to existing specs (because we forgot, whoops!) [Finishes #73742944]
This commit is contained in:
@@ -41,6 +41,10 @@
|
||||
return env.xdescribe(description, specDefinitions);
|
||||
},
|
||||
|
||||
fdescribe: function(description, specDefinitions) {
|
||||
return env.fdescribe(description, specDefinitions);
|
||||
},
|
||||
|
||||
it: function(desc, func) {
|
||||
return env.it(desc, func);
|
||||
},
|
||||
@@ -49,6 +53,10 @@
|
||||
return env.xit(desc, func);
|
||||
},
|
||||
|
||||
fit: function(desc, func) {
|
||||
return env.fit(desc, func);
|
||||
},
|
||||
|
||||
beforeEach: function(beforeEachFunction) {
|
||||
return env.beforeEach(beforeEachFunction);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user