We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31cacb8 commit 443fa2bCopy full SHA for 443fa2b
features/step_definitions/additional_cli_steps.rb
@@ -32,3 +32,13 @@
32
pending "Action Cable testing is not available"
33
end
34
35
+
36
+Then "the exit status should be 0 or I debug" do
37
+ begin
38
+ step "the exit status should be 0"
39
+ rescue Exception => e
40
+ puts all_output
41
+ puts e
42
+ raise e
43
+ end
44
+end
features/system_specs/system_specs.feature
@@ -106,4 +106,4 @@ Feature: System spec
106
When I run `rspec spec/system/widget_system_spec.rb`
107
Then the output should contain "1 example, 0 failures"
108
And the output should not contain "starting Puma"
109
- And the exit status should be 0
+ And the exit status should be 0 or I debug
0 commit comments