From 9a69b170fe366e85d14ab1c2ba82645ad57f5f46 Mon Sep 17 00:00:00 2001 From: Reinier Balt Date: Thu, 3 Jul 2014 20:58:18 +0200 Subject: [PATCH] increate wait time on cli test and re-enable the test --- features/add_todo_from_cli.feature | 4 ++-- features/step_definitions/console_steps.rb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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