diff --git a/features/03_testing_frameworks/cucumber/steps/command/debug_your_command_in_aruba.feature b/features/03_testing_frameworks/cucumber/steps/command/debug_your_command_in_aruba.feature index e4eaafbeb..529d8e6fd 100644 --- a/features/03_testing_frameworks/cucumber/steps/command/debug_your_command_in_aruba.feature +++ b/features/03_testing_frameworks/cucumber/steps/command/debug_your_command_in_aruba.feature @@ -7,7 +7,7 @@ Feature: Debug your command in cucumber-test-run Given I use a fixture named "cli-app" And the default aruba exit timeout is 60 seconds - @requires-readline + @unsupported-on-platform-java Scenario: You can use a debug repl in your cli program If you want to debug an error, which only occurs in one of your diff --git a/features/06_use_aruba_cli/open_console.feature b/features/06_use_aruba_cli/open_console.feature index 88f95dc99..e6ad6d78f 100644 --- a/features/06_use_aruba_cli/open_console.feature +++ b/features/06_use_aruba_cli/open_console.feature @@ -11,7 +11,6 @@ Feature: Aruba Console aruba:001:0> """ - @unsupported-on-platform-java Scenario: Show help Given I run `aruba console` interactively And I type "aruba_help" @@ -29,7 +28,6 @@ Feature: Aruba Console Documentation: """ - @unsupported-on-platform-java Scenario: Show methods Given I run `aruba console` interactively And I type "aruba_methods" @@ -43,7 +41,6 @@ Feature: Aruba Console * setup_aruba """ - @unsupported-on-platform-java Scenario: Has history Given I run `aruba console` interactively And I type "aruba_methods" diff --git a/lib/aruba/cucumber/command.rb b/lib/aruba/cucumber/command.rb index 137931b57..f70635109 100644 --- a/lib/aruba/cucumber/command.rb +++ b/lib/aruba/cucumber/command.rb @@ -23,8 +23,7 @@ end When(/^I run `([^`]*)` interactively$/) do |cmd| - cmd = sanitize_text(cmd) - @interactive = run_command(cmd) + run_command(sanitize_text(cmd)) end # Merge interactive and background after refactoring with event queue