Skip to content

Commit

Permalink
fix travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Vandenberg committed May 23, 2020
1 parent ed031ce commit a4599f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ os:
node_js:
- 'stable'

notifications:
slack: publicstrategiesgroup:SIDj5XVLcpknbHdCue6JA4nJ

cache:
directories:
- node_modules
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
},
"scripts": {
"start": "rollup --config rollup.config.js --watch",
"test": "jest --coverage && coveralls < coverage/lcov.info",
"test": "jest",
"test-ci": "jest --coverage && coveralls < coverage/lcov.info",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:watch:coverage": "jest --watch --coverage",
Expand Down Expand Up @@ -43,7 +44,8 @@
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts"
"<rootDir>/src/**/*.ts",
"!<rootDir>/src/index.ts"
]
},
"devDependencies": {
Expand Down

0 comments on commit a4599f3

Please sign in to comment.