diff --git a/features/add_todo_from_cli.feature b/features/add_todo_from_cli.feature index 11044714..01e0c842 100644 --- a/features/add_todo_from_cli.feature +++ b/features/add_todo_from_cli.feature @@ -15,7 +15,7 @@ Feature: Add a todo to Tracks on console And I have a context called "Context A" And I have a project called "Project A" - @javascript @aruba @wip + @javascript @aruba Scenario: Create a single todo Given a console input that looks like """ @@ -24,7 +24,7 @@ Feature: Add a todo to Tracks on console When I execute the add-todo script Then I should have 1 todo in project "Project A" - @javascript @aruba @wip + @javascript @aruba Scenario: Create multiple todos Given a console input that looks like """ diff --git a/features/step_definitions/console_steps.rb b/features/step_definitions/console_steps.rb index 9c40a47e..4f9319ba 100644 --- a/features/step_definitions/console_steps.rb +++ b/features/step_definitions/console_steps.rb @@ -54,6 +54,6 @@ When /^I execute the add-todo script$/ do # it seems aruba does not wait for process to end with interactively run command, but # continues anyway which will start cleaning up the database while the process is still running - # so wait 2 secs for the process to finish - sleep 2 + # so wait 2.5 secs for the process to finish + sleep 2.5 end \ No newline at end of file