We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe
it
Coming from Ruby and RSpec, I am used to see the texts from describe and it blocks in the error message when the test fails.
describe
I would assume something similar to this example:
describe("Spectrum", () -> { it("can make assertions", () -> { assertThat(true, is(false)); }); });
Output might look like
Test failed: Spectrum, it can make assertions (/thisIs/A/PathTo/MyTestFile:15) Expected: is <false> but: was <true>
with "/thisIs/A/PathTo/MyTestFile:15" indicating the line in which the it block starts.
wdyt?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Coming from Ruby and RSpec, I am used to see the texts from
describe
andit
blocks in the error message when the test fails.I would assume something similar to this example:
Output might look like
with "/thisIs/A/PathTo/MyTestFile:15" indicating the line in which the
it
block starts.wdyt?
The text was updated successfully, but these errors were encountered: