We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8c0ae8 commit 09c9ca8Copy full SHA for 09c9ca8
.travis.yml
@@ -2,11 +2,6 @@ language: node_js
2
node_js:
3
- "0.12"
4
- "0.11"
5
-install:
6
- - npm install
7
-before_script:
8
- - git config user.name "Travis CI"
9
- - grunt &
10
- - sleep 5 # give grunt background task some time to execute.
11
-script:
12
- - npm run coveralls
+after_success:
+- ./node_modules/.bin/jscoverage lib lib-cov
+- ./node_modules/.bin/mocha test/**.js -R mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js
package.json
@@ -52,6 +52,7 @@
52
"grunt-contrib-copy": "0.8.x",
53
"grunt-contrib-jshint": "0.11.x",
54
"grunt-contrib-watch": "0.6.x",
55
+ "jscoverage":"0.6.x",
56
"coveralls": "2.11.x",
57
"mocha-lcov-reporter": "0.0.x"
58
},
0 commit comments