leaflet-canvaslayer-field
Version:
A set of layers using canvas to draw ASCIIGrid or GeoTIFF files. This includes a basic raster layer (*ScalaField*) and an animated layer for vector fields, such as wind or currents (*VectorFieldAnim*)
33 lines (31 loc) • 880 B
JavaScript
// 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
});
};