Skip to content

Commit

Permalink
jest-circus: feature parity (#6328)
Browse files Browse the repository at this point in the history
* jest-circus: feature parity

* leave skip on jasmine
  • Loading branch information
thymikee authored and cpojer committed May 30, 2018
1 parent f1426ce commit fd2cb8b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions e2e/__tests__/location_in_results.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
const runJest = require('../runJest');
const ConditionalTest = require('../../scripts/ConditionalTest');

ConditionalTest.skipSuiteOnJestCircus();

it('defaults to null for location', () => {
const result = runJest.json('location-in-results').json;

Expand Down
8 changes: 0 additions & 8 deletions scripts/ConditionalTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,6 @@ const ConditionalTest = {
}
},

skipSuiteOnJestCircus() {
if (this.isJestCircusRun()) {
fit('does not work on jest-circus', () => {
console.warn('[SKIP] Does not work on jest-circus');
});
}
},

skipSuiteOnWindows() {
if (process.platform === 'win32') {
fit('does not work on Windows', () => {
Expand Down

0 comments on commit fd2cb8b

Please sign in to comment.