Skip to content

Commit

Permalink
Merge pull request #47 from unexpectedjs/fix/travis
Browse files Browse the repository at this point in the history
Fix/travis
  • Loading branch information
papandreou committed Jul 5, 2017
2 parents a1e4b2b + 331be76 commit f94f96a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@ language: node_js
node_js:
- "0.10"
- "0.12"
before_install: "npm install -g npm && npm cache clean"
- "4"
- "6"
- "7"
- "8"
script: "npm run-script travis"
4 changes: 3 additions & 1 deletion bootstrap-unexpected-markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ unexpected = require('unexpected');
unexpected.output.preferredWidth = 80;
unexpected.installPlugin(require('./lib/unexpected-sinon'));
require('./test/monkeyPatchSinonStackFrames');
Promise = require('rsvp');
if (typeof Promise === 'undefined') {
Promise = require('rsvp').Promise;
}
sinon = require('sinon');
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"serve": "*",
"sinon": "1.17.7",
"unexpected": "10.23.0",
"unexpected-documentation-site-generator": "^4.2.3",
"unexpected-markdown": "1.4.1"
"unexpected-documentation-site-generator": "4.5.0",
"unexpected-markdown": "1.7.2"
}
}

0 comments on commit f94f96a

Please sign in to comment.