Skip to content

Commit 6eed2d8

Browse files
authored
Merge pull request #65 from testing-library/51-code-coverage
#51 code coverage
2 parents d5344d7 + 6c3a706 commit 6eed2d8

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.travis.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@ cache:
66
- ~/.npm
77
notifications:
88
email: false
9-
node_js: '8'
9+
node_js:
10+
- '8'
11+
- '10'
12+
- '12'
1013
install: yarn
11-
script: yarn test
12-
after_success: yarn coveralls
14+
script:
15+
- yarn test
16+
- yarn global add codecov
17+
after_success: codecov
1318
branches:
14-
only: master
19+
only: master

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@testing-library/vue",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Simple and complete Vue DOM testing utilities that encourage good testing practices.",
55
"main": "dist/vue-testing-library.js",
66
"scripts": {

0 commit comments

Comments
 (0)