mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-14 18:22:21 +00:00
Fixed karma reporting
This commit is contained in:
parent
37859e51b7
commit
a07d0cde85
1 changed files with 3 additions and 3 deletions
|
|
@ -167,9 +167,9 @@ gulp.task('test:karma:safe', ['test:prepare:build'], (cb) => {
|
|||
(err, stdout) => {
|
||||
testResults.push({
|
||||
suite: 'Karma Specs\t',
|
||||
pass: testCount(stdout, /(\d+) tests completed/),
|
||||
fail: testCount(stdout, /(\d+) tests failed/),
|
||||
pend: testCount(stdout, /(\d+) tests skipped/)
|
||||
pass: testCount(stdout, /(\d+) tests? completed/),
|
||||
fail: testCount(stdout, /(\d+) tests? failed/),
|
||||
pend: testCount(stdout, /(\d+) tests? skipped/)
|
||||
});
|
||||
cb();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue