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 ceef101 commit 86795d4Copy full SHA for 86795d4
src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php
@@ -914,6 +914,10 @@ public function testTraversableMultiselectAutocomplete()
914
915
public function testAutocompleteMoveCursorBackwards()
916
{
917
+ if (!Terminal::hasSttyAvailable()) {
918
+ $this->markTestSkipped('`stty` is required to test autocomplete functionality');
919
+ }
920
+
921
// F<TAB><BACKSPACE><BACKSPACE><BACKSPACE>
922
$inputStream = $this->getInputStream("F\t\177\177\177");
923
0 commit comments