Skip to content

Commit 747a459

Browse files
committed
Added missing resolve for option
Fixes #219
1 parent 1de7c49 commit 747a459

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/PHPUnitCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private function resolveOptions(InputInterface $input): array
9696
'--verbose',
9797
];
9898
}
99-
foreach (['fail-on-incomplete', 'fail-on-risky', 'fail-on-skipped', 'fail-on-warning'] as $option) {
99+
foreach (['fail-on-incomplete', 'fail-on-risky', 'fail-on-skipped', 'fail-on-warning', 'testdox'] as $option) {
100100
if ($input->getOption($option)) {
101101
$options[] = [
102102
'--' . $option,

0 commit comments

Comments
 (0)