angular-file-saver
Version:
An AngularJS service that implements the HTML5 W3C saveAs() in browsers that do not natively support it
31 lines (29 loc) • 688 B
JavaScript
'use strict';
module.exports = function(config) {
config.set({
basePath: './',
frameworks: ['jasmine'],
preprocessors: {
'src/**/*.js': ['webpack']
},
browsers: ['Chrome', 'Firefox'],
nyanReporter: {
suppressErrorReport: true,
suppressErrorHighlighting: true,
numberOfRainbowLines: 4
},
autoWatch: false,
proxies: {
'/': 'http://localhost:9876/'
},
urlRoot: '/__karma__/',
singleRun: true,
files: [
'node_modules/angular/angular.js',
'node_modules/angular-mocks/angular-mocks.js',
'src/angular-file-saver-bundle.module.js',
// Test files
'test/**/*.spec.js'
]
});
};