UNPKG

bardjs

Version:

Spec helpers for testing angular v.1.x apps with Mocha, Jasmine or QUnit

27 lines (24 loc) 587 B
module.exports = function() { var root = './'; var service = { getConfig: getConfig }; return service; function getConfig() { var config = { specs: ['./tests/**/*.spec.js'], js: [ './bard.js', './bard-ngRouteTester.js' ], packages: [ './package.json', './bower.json' ], build: './dist/', report: './report/', root: root }; return config; } };