Change #xit so that it will output a more BDD-style pending message

This commit is contained in:
Cody Sehl
2015-10-14 21:03:47 -06:00
parent 141fd910f2
commit e5c2572753
2 changed files with 12 additions and 1 deletions

View File

@@ -416,7 +416,7 @@ getJasmineRequireObj().Env = function(j$) {
this.xit = function() {
var spec = this.it.apply(this, arguments);
spec.pend();
spec.pend('Temporarily disabled with xit');
return spec;
};