forked from LGSInnovations/sigplot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkarma.conf.js
More file actions
22 lines (22 loc) · 748 Bytes
/
karma.conf.js
File metadata and controls
22 lines (22 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = function(config) {
config.set({
files: ['benchmark/autobench.js',
"benchmark/index.html",
"benchmark/pass.html",
"benchmark/fail.html",
"benchmark/gamingbench.js",
"benchmark/tools.js",
"benchmark/benchmarks.js",
"benchmark/index.css",
"benchmark/index.js",
"dist/sigplot.js",
"dist/bluefile.js",
"dist/sigplot.plugins.js"],
browsers: ['Firefox', 'Chrome'],
frameworks: ['qunit'],
concurrency: 1,
browserNoActivityTimeout: 360000,
singleRun: true,
logLevel: config.LOG_DEBUG
});
};