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

34 lines
597 B
JavaScript
Raw Normal View History

2014-03-11 14:54:36 +00:00
module.exports = function(karma) {
karma.set({
basePath: '../../',
frameworks: [ 'browserify', 'jasmine' ],
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
2014-07-17 07:02:40 +00:00
browserNoActivityTimeout: 15000,
2014-03-11 14:54:36 +00:00
singleRun: false,
autoWatch: true,
// browserify configuration
browserify: {
debug: true,
2014-03-14 16:52:30 +00:00
transform: [ 'brfs' ]
2014-03-11 14:54:36 +00:00
}
});
};