Sha256: 8125bbd72c7b8f7e3b669f08ec76be1c27c014902eeed4534816cdbcb0a1dfc9
Contents?: true
Size: 1003 Bytes
Versions: 8
Compression:
Stored size: 1003 Bytes
Contents
// Karma configuration file // See http://karma-runner.github.io/0.10/config/configuration-file.html module.exports = function (config) { config.set({ basePath: '', frameworks: ['jasmine'], // list of files / patterns to load in the browser files: [ // libraries 'bower_components/lodash/lodash.js', 'bower_components/angular/angular.js', 'bower_components/angular-mocks/angular-mocks.js', // directive './dist/ng-table.js', // tests 'test/*.js' //'test/tableParamsSpec.js' //'test/tableControllerSpec.js' ], // generate js files from html templates preprocessors: { '*.js': 'coverage' }, reporters: ['progress', 'coverage'], autoWatch: true, browsers: ['Chrome'], coverageReporter: { type: 'lcov', dir: 'out/coverage' } }); };
Version data entries
8 entries across 8 versions & 1 rubygems