We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f304a82 commit c52a201Copy full SHA for c52a201
package.json
@@ -9,7 +9,8 @@
9
},
10
"scripts": {
11
"prepublish": "npm run build",
12
- "build": "babel --out-dir ./lib ./src"
+ "build": "babel --out-dir ./lib ./src",
13
+ "test": "tap test/*.js"
14
15
"files": [
16
"bin",
@@ -31,6 +32,7 @@
31
32
"babel-cli": "^6.22.2",
33
"babel-preset-es2015": "^6.22.0",
34
"babel-preset-stage-0": "^6.22.0",
- "github": "^8.1.1"
35
+ "github": "^8.1.1",
36
+ "tap": "^10.0.2"
37
}
38
test/index.js
@@ -0,0 +1,4 @@
1
+var test = require('tap').test;
2
+
3
+test('noop', function(t) {
4
+});
0 commit comments