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

47 lines
914 B
JavaScript
Raw Normal View History

'use strict';
var path = require('path');
var basePath = '../../';
var absoluteBasePath = path.resolve(path.join(__dirname, basePath));
2014-03-11 14:54:36 +00:00
module.exports = function(karma) {
karma.set({
basePath: basePath,
2014-03-11 14:54:36 +00:00
frameworks: [ 'browserify',
'mocha',
'chai',
'sinon-chai'],
2014-03-11 14:54:36 +00:00
files: [
'test/spec/**/*Spec.js',
'test/integration/**/*Spec.js'
2014-03-11 14:54:36 +00:00
],
2014-03-11 14:54:36 +00:00
reporters: [ 'dots' ],
preprocessors: {
'test/spec/**/*Spec.js': [ 'browserify' ],
'test/integration/**/*Spec.js': [ 'browserify' ]
2014-03-11 14:54:36 +00:00
},
browsers: [ 'PhantomJS' ],
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
}
});
};