We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c74ac1c commit 34cd632Copy full SHA for 34cd632
2 files changed
package.json
@@ -10,7 +10,7 @@
10
"scripts": {
11
"prepublish": "npm run build",
12
"build": "babel --out-dir ./lib ./src",
13
- "test": "tap test/*.js"
+ "test": "tap test/*.js --no-timeout --node-arg=--require --node-arg=babel-register --node-arg=--require --node-arg=babel-polyfill"
14
},
15
"files": [
16
"bin",
test/index.js
@@ -1,4 +1,5 @@
1
-var test = require('tap').test;
+import { test } from 'tap';
2
3
-test('noop', function(t) {
+test('noop', (t) => {
4
+ t.end();
5
});
0 commit comments