UNPKG

bpmn-js

Version:

A bpmn 2.0 toolkit and web modeler

30 lines (21 loc) 510 B
module.exports = function(karma) { karma.set({ basePath: '../../', frameworks: [ 'browserify', 'jasmine' ], files: [ 'test/spec/browser/**/*Spec.js' ], reporters: [ 'dots' ], preprocessors: { 'test/spec/browser/**/*Spec.js': [ 'browserify' ] }, browsers: [ 'PhantomJS' ], singleRun: false, autoWatch: true, // browserify configuration browserify: { debug: true, transform: [ 'brfs' ] } }); };