-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
var jparams = require('../index.js'); | ||
|
||
describe('focus and ignored TCs', function () { | ||
var iterator = jparams | ||
.iterate('theNumber') | ||
.values(1, 2, 3, 4, 5); | ||
|
||
describe('xit should be ignored', function() { | ||
iterator.xit('should be ignored', function (theNumber) { | ||
expect(false).toBeTruthy(); | ||
}); | ||
|
||
it('should run', function() { | ||
expect(false).toBeFalsy(); | ||
}); | ||
}); | ||
|
||
// commented out because it would prevent other TCs from running | ||
|
||
//describe('iit should focus', function() { | ||
// iterator.iit('should run', function (theNumber) { | ||
// expect(false).toBeFalsy(); | ||
// }); | ||
|
||
// it('should not run', function () { | ||
// expect(false).toBeTruthy(); | ||
// }); | ||
//}); | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters