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 collaboratorJSON formatter
- Scenarios
-
- Formatting example names for retry
-
- Given
-
a file named "various_spec.rb" with:
RSpec.describe "Various" do it "fails" do expect("fail").to eq("succeed") end it "succeeds" do expect("succeed").to eq("succeed") end it "pends" end
- When
-
I run
rspec various_spec.rb --format j
- Then
-
the output should contain all of these:
"summary_line":"3 examples, 1 failure, 1 pending" "examples":[ "description":"fails" "full_description":"Various fails" "status":"failed" "file_path":"./various_spec.rb" "line_number":2 "exception":{ "class":"RSpec::Expectations::ExpectationNotMetError" - And
- the exit status should be 1
Last published over 2 years ago by Jon Rowe.