-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.macdev.conf.js
100 lines (82 loc) · 3.28 KB
/
karma.macdev.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
* use this configuration for developing on mac, it does not generate coverage reports to do those run
* standard karma without specifing config or use npm test
* this assumes you have a standard set of browsers and want to autorun tests and you have installed chrome
* and firefox but not Opera or IE. We install phantom, this is what is used in e2e testing (npm test).
* Use:
* karma start karma.macdev.conf.js
*/
module.exports = function(config) {
config.set({
// base path, that will be used to resolve files and exclude
basePath: '',
// frameworks to use, these need to be specified in plugins below
frameworks: [ 'mocha', 'requirejs' , 'sinon-chai', 'chai-backbone'],
// list of ALL files / patterns needed by requireJS, if not loaded here will not work later
files: [
{ pattern: 'node_modules/chai/chai.js' , included: false },
{ pattern: 'www/js/**/*.js' , included: false },
{ pattern: 'www/js/**/*.html' , included: false },
{ pattern: 'test/**/*.test.js', included: false},
'test/main.js'
],
// list of files to exclude - the original main.js is replaced with one that creates the test list and no bootstrap
exclude: [
'www/js/main.js'
],
// test results reporter to use
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
// reporters: ['progress', 'dots' ,'html' , 'coverage'], // need to install spec using
// web server port
port: 9876,
// CLI --runner-port 9100
runnerPort : 9100,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
// logLevel: config.LOG_DEBUG,
logLevel: config.LOG_ERROR,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera
// - Safari (only Mac)
// - PhantomJS
// - IE (only Windows)
// browsers need to be in plugins below
browsers: ['Chrome', 'Firefox', 'Safari', 'PhantomJS' ],
// If browser does not capture in given timeout [ms], kill it
captureTimeout: 60000,
singleRun: false,
// singleRun: true,
preprocessors : {
// '**/www/*.js': 'coverage'
},
htmlReporter: {
// outputFile: 'test/report.html'
},
coverageReporter: {
type : 'html',
dir : 'coverage/',
file : 'coverage.html'
},
// these need to be in your dev dependencies in package.json
plugins: [
"karma-mocha",
"karma-requirejs",
"karma-sinon-chai",
"karma-chai-backbone",
'karma-chrome-launcher',
'karma-firefox-launcher',
'karma-safari-launcher',
'karma-phantomjs-launcher',
'karma-ie-launcher',
'karma-htmlfile-reporter',
'karma-coverage'
]
});
};