forked from ice200117/Leaflet.CanvasLayer.Field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma-ci.conf.js
32 lines (31 loc) · 880 Bytes
/
karma-ci.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
// Karma configuration for CI testing
module.exports =
function(config) {
config.set({
basePath: '',
frameworks: ['jasmine'],
files: [
'node_modules/leaflet/dist/leaflet.js',
'node_modules/d3/build/d3.js',
'node_modules/geotiff/dist/geotiff.browserify.js',
'dist/leaflet.canvaslayer.field.js',
{
pattern: 'docs/data/*.{asc,tiff,tif}',
watched: true,
included: false,
served: true
},
'spec/**/*Spec.js'
],
exclude: [],
preprocessors: {},
reporters: ['progress'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: false,
browsers: ['ChromeHeadless'],
singleRun: true,
concurrency: Infinity
});
};