Update package.json deps to include PhantomJS / karma launcher, update output location, freeze deps

This commit is contained in:
Leigh Johnson
2016-09-21 16:18:10 -04:00
parent 5b6f610970
commit e9570c9d52
3 changed files with 372 additions and 252 deletions

View File

@@ -9,13 +9,13 @@ module.exports = function(config) {
browsers: ['Chrome', 'Firefox'],
coverageReporter: {
reporters: [
{ type: 'html', subdir: 'html' }
{ type: 'html', subdir: 'html' },
]
},
frameworks: [
'jasmine',
],
reporters: ['progress', 'coverage'],
reporters: ['progress', 'coverage', 'junit'],
files: [
'./client/src/app.js',
'./node_modules/angular-mocks/angular-mocks.js',
@@ -86,7 +86,9 @@ module.exports = function(config) {
}
},
junitReporter: {
outputFile: 'coverage/test-results.xml'
outputDir: 'coverage',
outputFile: 'ui-unit-test-results.xml',
useBrowserName: false
}
});
};