bpmn-js/test/config/karma.unit.js

78 lines
1.6 KiB
JavaScript
Raw Normal View History

'use strict';
var path = require('path');
var basePath = '../../';
var absoluteBasePath = path.resolve(path.join(__dirname, basePath));
/* global process */
// configures browsers to run test against
// any of [ 'ChromeHeadless', 'Chrome', 'Firefox', 'IE', 'PhantomJS' ]
var browsers =
(process.env.TEST_BROWSERS || 'PhantomJS')
.replace(/^\s+|\s+$/, '')
.split(/\s*,\s*/g)
.map(function(browser) {
if (browser === 'ChromeHeadless') {
process.env.CHROME_BIN = require('puppeteer').executablePath();
// workaround https://github.com/GoogleChrome/puppeteer/issues/290
if (process.platform === 'linux') {
return 'ChromeHeadless_Linux';
}
} else {
return browser;
}
});
2014-03-11 14:54:36 +00:00
module.exports = function(karma) {
karma.set({
basePath: basePath,
2014-03-11 14:54:36 +00:00
2015-10-09 23:35:41 +00:00
frameworks: [
'browserify',
'mocha',
'sinon-chai'
],
2014-03-11 14:54:36 +00:00
files: [
2015-10-09 23:35:41 +00:00
'test/**/*Spec.js'
2014-03-11 14:54:36 +00:00
],
2014-03-11 14:54:36 +00:00
preprocessors: {
'test/**/*Spec.js': [ 'browserify', 'env' ]
2014-03-11 14:54:36 +00:00
},
2016-06-07 08:25:00 +00:00
reporters: [ 'spec' ],
2015-10-09 23:35:41 +00:00
customLaunchers: {
ChromeHeadless_Linux: {
base: 'ChromeHeadless',
flags: [
'--no-sandbox',
'--disable-setuid-sandbox'
],
debug: true
}
},
browsers: browsers,
2014-03-11 14:54:36 +00:00
browserNoActivityTimeout: 30000,
2014-07-17 07:02:40 +00:00
2014-03-11 14:54:36 +00:00
singleRun: false,
autoWatch: true,
// browserify configuration
browserify: {
debug: true,
paths: [ absoluteBasePath ],
transform: [ [ 'stringify', { global: true, extensions: [ '.bpmn', '.xml', '.css' ] } ] ]
2014-03-11 14:54:36 +00:00
}
});
};