forked from terrestris/BasiGX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma-conf.common.js
103 lines (86 loc) · 3.94 KB
/
karma-conf.common.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
101
102
103
/* eslint-env node */
/* eslint max-len: 0 */
process.env.CHROME_BIN = require('puppeteer').executablePath();
module.exports = function(config) {
var files = [
'https://cdnjs.cloudflare.com/ajax/libs/extjs/6.2.0/classic/theme-neptune/resources/theme-neptune-all_1.css',
'https://cdnjs.cloudflare.com/ajax/libs/extjs/6.2.0/classic/theme-neptune/resources/theme-neptune-all_2.css',
'https://cdnjs.cloudflare.com/ajax/libs/extjs/6.2.0/classic/theme-neptune/resources/theme-neptune-all.css',
'https://cdnjs.cloudflare.com/ajax/libs/openlayers/4.6.5/ol.css',
'https://cdnjs.cloudflare.com/ajax/libs/openlayers/4.6.5/ol.js',
'https://cdnjs.cloudflare.com/ajax/libs/extjs/6.2.0/ext-all.js',
'https://cdnjs.cloudflare.com/ajax/libs/extjs/6.2.0/packages/ux/classic/ux.js',
'https://geoext.github.io/geoext3/master/GeoExt.js',
'https://cdnjs.cloudflare.com/ajax/libs/opentype.js/0.6.9/opentype.min.js',
'https://cdn.jsdelivr.net/gh/highsource/[email protected]/dist/Jsonix-min.js',
'https://cdn.jsdelivr.net/gh/bjornharrtell/jsts@gh-pages/1.4.0/jsts.min.js',
'https://cdn.jsdelivr.net/gh/highsource/[email protected]/scripts/lib/SLD_1_0_0_GeoServer.js',
'https://cdn.jsdelivr.net/gh/highsource/[email protected]/scripts/lib/Filter_1_0_0.js',
'https://cdn.jsdelivr.net/gh/highsource/[email protected]/scripts/lib/GML_2_1_2.js',
'https://cdn.jsdelivr.net/gh/highsource/[email protected]/scripts/lib/XLink_1_0.js',
'https://cdn.jsdelivr.net/npm/[email protected]/dist/proj4-src.min.js',
'src/**/*js',
'test/test-helper-functions.js',
'test/**/*js',
{pattern: 'test/resources/**/*', watched: false, included: false, served: true}
];
config.set({
basePath: '.',
proxies: {
'/resources': '/base/test/resources',
'/spec': '/base/test/spec',
'/BasiGX': '/base/src'
},
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['mocha', 'expect', 'sinon'],
// list of files / patterns to load in the browser
files: files,
// list of files to exclude
exclude: [
],
preprocessors: {
'src/**/*.js': ['coverage']
},
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['mocha', 'coverage'],
// web server port
port: 9876,
// 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_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: [
'ChromeNoSandbox'
// 'Firefox',
// 'Chromium_no_sandbox'
],
customLaunchers: {
ChromeNoSandbox: {
base: 'Chrome',
flags: [
'--no-sandbox',
'--headless',
'--disable-web-security',
'--disable-gpu',
// Without a remote debugging port, Google Chrome exits immediately.
'--remote-debugging-port=9999',
'--remote-debugging-address=1.1.1.1'
]
}
},
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false,
// Concurrency level
// how many browser should be started simultaneous
concurrency: Infinity
});
};