We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c688f31 commit 79d2ffdCopy full SHA for 79d2ffd
package.json
@@ -43,5 +43,16 @@
43
"engines": { "node": ">= 0.4.0" },
44
"scripts": {
45
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js"
46
+ },
47
+ "testling": {
48
+ "browsers": [
49
+ "chrome/latest"
50
+ ],
51
+ "harness" : "mocha",
52
+ "files": [
53
+ "test/bootstrap/testling.js",
54
+ "test/*.test.js",
55
+ "test/**/*.test.js"
56
+ ]
57
}
58
test/bootstrap/testling.js
@@ -0,0 +1,7 @@
1
+var chai = require('chai')
2
+ , passport = require('chai-passport-strategy');
3
+
4
+chai.use(passport);
5
6
7
+window.expect = chai.expect;
0 commit comments