forked from joebandenburg/libaxolotl-javascript
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkarma.conf.js
More file actions
23 lines (22 loc) · 759 Bytes
/
karma.conf.js
File metadata and controls
23 lines (22 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module.exports = function(config) {
config.set({
frameworks: ["mocha", "chai"],
files: [
"bower_components/axolotl-crypto-curve25519/curve25519.js",
"bower_components/axolotl-crypto/axolotl-crypto.js",
"node_modules/bytebuffer/dist/ByteBufferAB.js",
"node_modules/protobufjs/dist/ProtoBuf.noparse.js",
"node_modules/traceur/bin/traceur-runtime.js",
"dist/axolotl.js",
"test/integration/web/**/*.js"
],
browsers: ["Firefox"],
client: {
mocha: {
reporter: "html", // change Karma's debug.html to the mocha web reporter
ui: "bdd"
}
},
singleRun: true
});
};