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 4e312c5 commit f5fb6deCopy full SHA for f5fb6de
package.json
@@ -64,6 +64,7 @@
64
"babel-relay-plugin": "^0.8.0",
65
"chai": "^3.5.0",
66
"chai-as-promised": "^5.3.0",
67
+ "chai-spies": "^0.7.1",
68
"eslint": "^2.8.0",
69
"eslint-config-airbnb": "^7.0.0",
70
"eslint-plugin-jsx-a11y": "^0.6.2",
resources/mocha-bootload.js
@@ -1,7 +1,11 @@
1
+/* eslint-disable */
2
+
3
import chai from 'chai';
4
import chaiAsPromised from 'chai-as-promised';
5
+import chaiSpies from 'chai-spies';
6
7
chai.use(chaiAsPromised);
8
+chai.use(chaiSpies);
9
10
process.on('unhandledRejection', (error) => {
11
console.error('Unhandled Promise Rejection:');
0 commit comments