forked from berrberr/streamkeys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
56 lines (42 loc) · 899 Bytes
/
karma.conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"use strict";
process.env.CHROME_BIN = require("puppeteer").executablePath();
module.exports = function(config) {
config.set({
basePath: "",
plugins: [
"@metahub/karma-jasmine-jquery",
"karma-*"
],
frameworks: [
"browserify",
"jasmine-jquery",
"jasmine",
"sinon-chrome"
],
files: [
"node_modules/sinon/pkg/sinon.js",
"test/**/*.test.js",
"test/fixtures/*.html"
],
preprocessors: {
"test/**/*.test.js": ["browserify"]
},
reporters: ["spec"],
port: 9876,
colors: true,
// LOG_DISABLE, LOG_ERROR, LOG_WARN, LOG_INFO, LOG_DEBUG
logLevel: config.LOG_INFO,
autoWatch: true,
singleRun: true,
browsers: ["ChromeHeadless"],
browserify: {
debug: true,
transform: []
},
client: {
jasmine: {
random: false
}
}
});
};