We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7e4b8c commit 9baa17bCopy full SHA for 9baa17b
.travis.yml
@@ -0,0 +1,8 @@
1
+language: node_js
2
+node_js:
3
+ - '6'
4
+sudo: false
5
+script:
6
+ - "npm test"
7
+after_success:
8
+ - 'npm install coveralls && ./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls'
package.json
@@ -5,7 +5,7 @@
"scripts": {
"test": "npm run eslint && npm run test-cov",
"test-cov": "nyc ava test/ && nyc report --reporter=html",
- "eslint": "eslint ./lib",
+ "eslint": "eslint ./lib index.js",
9
"prepublish": "npm test"
10
},
11
"repository": {
test/index.js
@@ -0,0 +1,2 @@
+const {test} = require('ava');
+test.todo('todo');
0 commit comments