Skip to content

Commit

Permalink
Merge pull request jestjs#1602 from Daniel15/appveyor-reporter
Browse files Browse the repository at this point in the history
Add AppVeyor Jasmine reporter
  • Loading branch information
cpojer authored Sep 3, 2016
2 parents b7ef9dd + 375c80f commit e08af71
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"graceful-fs": "^4.1.6",
"istanbul-api": "^1.0.0-aplha.10",
"istanbul-lib-coverage": "^1.0.0",
"jasmine-reporters": "^2.2.0",
"lerna": "2.0.0-beta.26",
"minimatch": "^3.0.3",
"mkdirp": "^0.5.1",
Expand Down
7 changes: 7 additions & 0 deletions testSetupFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
*/
'use strict';

const jasmineReporters = require('jasmine-reporters');

// Some of the `jest-runtime` tests are very slow and cause
// timeouts on travis
jasmine.DEFAULT_TIMEOUT_INTERVAL = 70000;

if (process.env.APPVEYOR_API_URL) {
// Running on AppVeyor, add the custom reporter.
jasmine.getEnv().addReporter(new jasmineReporters.AppVeyorReporter());
}

0 comments on commit e08af71

Please sign in to comment.