UNPKG

karma-story-reporter

Version:

A Karma plugin. Report results in BDD-style story format.

22 lines (19 loc) 391 B
module.exports = function(config) { config.set({ frameworks: ['jasmine'], files: [ 'test/helper/*.js', 'index.js', 'test/*Test.js' ], reporters: ['story'], colors: true, logLevel: config.LOG_INFO, autoWatch: true, browsers: ['PhantomJS'], singleRun: false, storyReporter: { showSkipped: true } }); };