Skip to content

Commit 812d3df

Browse files
committed
Fixed Issue #104
1 parent c2c83e5 commit 812d3df

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
## Changelog
22

3+
- 0.22.1
4+
- Fixed `--no-coverage` flag setting when supplied [Issue 104](https://github.com/mikeerickson/gulp-phpunit/issues/104)
5+
36
- 0.21.0
47
- Updated dependencies
5-
- node-notifier@^5 reduces package size significantly
6-
8+
- `node-notifier@^5` reduces package size significantly
9+
710
- 0.20.0
811
- Fixed issue with duplicate test result output [57](https://github.com/mikeerickson/gulp-phpunit/issues/57)
912
- This was a regression intorduced in 0.19

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ module.exports = function (command, opt, callback) {
202202
cmd += ' -c ' + opt.configurationFile;
203203
}
204204

205-
if ((! skip) && (! opt.noCoverage)) {
205+
if ((! skip) && (opt.noCoverage)) {
206206
cmd += ' --no-coverage ';
207207
}
208208

0 commit comments

Comments
 (0)