Skip to content

Commit d4ecfd2

Browse files
committed
fix(tests): Fix skipping tests on non-Windows OS
- Skip tests on non-Windows OS - Remove unnecessary whitespace
1 parent 5c1169c commit d4ecfd2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/Feature/ConfigCommandTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@
110110
'--editor' => 'foo',
111111
]);
112112
})
113+
->skip(! windows_os())
113114
->group(__DIR__, __FILE__)
114115
->throws(ProcessFailedException::class);
115116

@@ -125,6 +126,7 @@
125126
'action' => 'edit',
126127
]);
127128
})
129+
->skip(! windows_os())
128130
->group(__DIR__, __FILE__)
129131
->throws(ProcessFailedException::class);
130132

0 commit comments

Comments
 (0)