To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorIO Wait Timeout
As a developer
I want to configure the timeout waiting for io of a command
In order to support some longer running commands
- Background
-
- Given
- I use the fixture "cli-app"
- Scenarios
-
- Default value
-
- Given
-
a file named "features/support/aruba.rb" with:
Aruba.configure do |config| puts %(The default value is "#{config.io_wait_timeout}") end
- When
-
I successfully run
cucumber
- Then
-
the output should contain:
The default value is "0.1"
- Modify value
-
- Given
-
a file named "features/support/aruba.rb" with:
Aruba.configure do |config| config.io_wait_timeout = 2 end
- Then
-
I successfully run
cucumber
Last published almost 6 years ago by philoserf.