Skip to content

Commit

Permalink
ci(travis): Make Travis actually run the tests (facepalm).
Browse files Browse the repository at this point in the history
ad42abd sets `script` in `.travis.yml`
to `npm run transpile`, without realising that the implicit default of
`npm test` will be overriden and thus no longer run.
  • Loading branch information
sneakertack committed Aug 14, 2017
1 parent 20b23f4 commit aa5a7ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
@@ -1,5 +1,7 @@
language: node_js
script: npm run transpile
script:
- npm run transpile
- npm test
node_js:
- "node"
- "6"
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
- Unified testing/coverage commands into a single `npm test`.

### Fixed
- Restore running of tests on Travis CI (broken since ad42abd532d1628c75b6f9bddeca36181c3846a3).

## [1.2.3] - 2017-08-07
### Added
- Add a copy of the most recent tests results to `tests/`.
Expand Down

0 comments on commit aa5a7ef

Please sign in to comment.