forked from stacktracejs/stacktrace-gps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkarma.conf.js
More file actions
26 lines (26 loc) · 749 Bytes
/
karma.conf.js
File metadata and controls
26 lines (26 loc) · 749 Bytes
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
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['jasmine-ajax', 'jasmine'],
files: [
'node_modules/stackframe/dist/stackframe.js',
'build/bundle.js', // source-map-consumer with deps
'node_modules/es6-promise/dist/es6-promise.js',
'stacktrace-gps.js',
'spec/*-spec.js'
],
reporters: ['spec'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
customLaunchers: {
ChromeTravis: {
base: 'Chrome',
flags: ['--no-sandbox']
}
},
browsers: ['PhantomJS2'],
singleRun: false
});
};