Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request #57 from AtomLinter/kepler/coverage
Browse files Browse the repository at this point in the history
Integrate Code Coverage
  • Loading branch information
keplersj authored Apr 21, 2018
2 parents 50c37e1 + f15e2a6 commit 843ec18
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ install:
script:
- commitlint-travis

after_success:
- bash <(curl -s https://codecov.io/bash)

jobs:
include:
- stage: release
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@types/node": "^9.6.5",
"atom-test-runner-jest": "^0.2.0",
"husky": "^0.14.3",
"jest-preset-atom": "^0.2.1",
"jest-preset-atom": "^0.2.2",
"semantic-release": "^15.1.7"
},
"scripts": {
Expand Down Expand Up @@ -88,6 +88,8 @@
},
"atomTestRunner": "atom-test-runner-jest",
"jest": {
"preset": "jest-preset-atom"
"preset": "jest-preset-atom",
"collectCoverage": true,
"coverageReporters": ["json", "text"]
}
}
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"strict": true
"strict": true,
"sourceMap": true
}
}

0 comments on commit 843ec18

Please sign in to comment.