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

47 lines
792 B
JavaScript

'use strict';
var path = require('path');
var basePath = '../../';
var absoluteBasePath = path.resolve(path.join(__dirname, basePath));
module.exports = function(karma) {
karma.set({
basePath: basePath,
frameworks: [
'browserify',
'mocha',
'chai',
'sinon-chai'
],
files: [
'test/**/*Spec.js'
],
preprocessors: {
'test/**/*Spec.js': [ 'browserify', 'env' ]
},
reporters: [ 'spec' ],
browsers: [ 'PhantomJS' ],
browserNoActivityTimeout: 30000,
singleRun: false,
autoWatch: true,
// browserify configuration
browserify: {
debug: true,
paths: [ absoluteBasePath ],
transform: [ [ 'stringify', { global: true, extensions: [ '.bpmn', '.xml', '.css' ] } ] ]
}
});
};