remove unused config

This commit is contained in:
Jake McDermott 2017-11-01 15:30:53 -04:00
parent 4883876dc5
commit 93f35b037d
No known key found for this signature in database
GPG Key ID: 3B02CAD476EECB35

View File

@ -1,40 +0,0 @@
const webpackTestConfig = require('./build/webpack.test.js');
module.exports = function(config) {
config.set({
autoWatch: true,
colors: true,
browsers: ['Chrome', 'Firefox'],
coverageReporter: {
reporters: [
{ type: 'html', subdir: 'html' },
]
},
frameworks: [
'jasmine',
],
reporters: ['progress', 'coverage', 'junit'],
files:[
'./client/src/vendor.js',
'./node_modules/angular-mocks/angular-mocks.js',
'./client/src/app.js',
'./tests/**/*-test.js',
'./client/src/**/*.html'
],
preprocessors: {
'./client/src/vendor.js': ['webpack'],
'./client/src/app.js': ['webpack'],
'./tests/**/*-test.js': ['webpack'],
'./client/src/**/*.html': ['html2js']
},
webpack: webpackTestConfig,
webpackMiddleware: {
noInfo: true
},
junitReporter: {
outputDir: 'coverage',
outputFile: 'ui-unit-test-results.xml',
useBrowserName: false
}
});
};