ng-csv
Version:
Simple directive that turns arrays and objects into downloadable CSV files
37 lines (27 loc) • 690 B
JavaScript
module.exports = function(config) {
config.set({
basePath: "",
files: [
// Libraries
'bower_components/angular/angular.js',
'bower_components/angular-sanitize/angular-sanitize.js',
'bower_components/angular-mocks/angular-mocks.js',
// App
'src/ng-csv/*.js',
'src/ng-csv/directives/*.js',
'src/ng-csv/services/*.js',
// Test helper
'test/unit/helper/*.js',
// Test specs
'test/unit/**/*.js'
],
frameworks: ["jasmine"],
autoWatch: true,
browsers: ['PhantomJS'],
// reporters = ['progress'];
junitReporter: {
outputFile: 'test_out/unit.xml',
suite: 'unit'
}
});
}