Merge "Add karma-subunit-reporter"
This commit is contained in:
commit
2d52706184
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,6 +6,7 @@ gulp-build
|
||||
app/js/templates.js
|
||||
app/data
|
||||
*.py[cod]
|
||||
karma.subunit
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
@ -57,6 +57,7 @@
|
||||
"karma-chrome-launcher": "0.2.3",
|
||||
"karma-coverage": "0.5.5",
|
||||
"karma-jasmine": "0.3.8",
|
||||
"karma-subunit-reporter": "0.0.4",
|
||||
"morgan": "1.7.0",
|
||||
"nprogress": "^0.2.0",
|
||||
"pretty-hrtime": "1.0.2",
|
||||
|
@ -13,7 +13,7 @@ module.exports = function(config) {
|
||||
'app/js/**/*.js': ['browserify', 'coverage']
|
||||
},
|
||||
browsers: ['Chrome'],
|
||||
reporters: ['progress'],
|
||||
reporters: ['progress', 'subunit'],
|
||||
|
||||
autoWatch: true,
|
||||
singleRun: true,
|
||||
@ -29,6 +29,11 @@ module.exports = function(config) {
|
||||
]
|
||||
},
|
||||
|
||||
subunitReporter: {
|
||||
slug: true,
|
||||
tags: ['worker-0']
|
||||
},
|
||||
|
||||
proxies: {
|
||||
'/': 'http://localhost:9876/'
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user