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.
Object.assign
babel-eslint
1 parent 917bc87 commit a4f4b60Copy full SHA for a4f4b60
package.json
@@ -8,7 +8,7 @@
8
"coveralls": "cat ./reports/coverage/lcov.info | coveralls",
9
"lint": "eslint ./",
10
"test": "npm run lint && npm run unit-test",
11
- "unit-test": "istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --reporter dot"
+ "unit-test": "istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --reporter dot --opts tests/mocha.opts"
12
},
13
"files": [
14
"LICENSE",
tests/mocha.opts
@@ -0,0 +1 @@
1
+--require ./tests/setup
tests/setup.js
@@ -0,0 +1,3 @@
+'use strict';
2
+
3
+require('object.assign/shim')();
0 commit comments