Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Commit

Permalink
Add CI tests with Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
sirreal committed Nov 6, 2017
1 parent efc52c6 commit 8d93454
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 63 deletions.
11 changes: 11 additions & 0 deletions .travis.yml
@@ -0,0 +1,11 @@
language: node_js
dist: trusty
sudo: false
addons:
chrome: stable
cache:
npm: true
directories:
- node_modules
node_js:
- 8
32 changes: 32 additions & 0 deletions karma-ci.conf.js
@@ -0,0 +1,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
});
};
65 changes: 65 additions & 0 deletions karma-local.conf.js
@@ -0,0 +1,65 @@
// Karma configuration for local testing

module.exports =
function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',

// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['jasmine'],

// list of files / patterns to load in the browser
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'
],

// list of files to exclude
exclude: [],

// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {},

// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress'],

// 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: ['Chrome'],

// 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
});
};
70 changes: 7 additions & 63 deletions karma.conf.js
@@ -1,65 +1,9 @@
//
// Karma configuration
// Generated on Mon Sep 18 2017 22:01:04 GMT+0200 (CEST)
//
// Conditionally load local or CI configurations based on CI environment variable
//

module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',

// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['jasmine'],

// list of files / patterns to load in the browser
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'
],

// list of files to exclude
exclude: [],

// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {},

// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress'],

// 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: ['Chrome'],

// 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
});
};
module.exports = process.env.CI === 'true'
? require( './karma-ci.conf.js' )
: require( './karma-local.conf.js' );

0 comments on commit 8d93454

Please sign in to comment.