8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adf3116 commit 944b320Copy full SHA for 944b320
tests/Command/AddUserCommandTest.php
@@ -28,11 +28,8 @@ class AddUserCommandTest extends KernelTestCase
28
29
protected function setUp(): void
30
{
31
- exec('stty 2>&1', $output, $exitcode);
32
- $isSttySupported = 0 === $exitcode;
33
-
34
- if ('Windows' === \PHP_OS_FAMILY || !$isSttySupported) {
35
- $this->markTestSkipped('`stty` is required to test this command.');
+ if ('Windows' === \PHP_OS_FAMILY) {
+ $this->markTestSkipped('Windows OS does not support testing this command.');
36
}
37
38
0 commit comments