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
It clearly counts every call to describe and it as a separate test, which can be seen with a trivial example.
describe
it
describe("something", function() it("should still only count as one test", function() -- This is the only test that should count end) end)
This will display "3 tests complete", and so on. There may be some other scenarios where different behavior is needed?
The text was updated successfully, but these errors were encountered:
Clearly caused by the mess in the C_Testing API (see #70 ). That's what you get when you commit prototypes, I guess 🤷♂️
C_Testing
Sorry, something went wrong.
No branches or pull requests
It clearly counts every call to
describe
andit
as a separate test, which can be seen with a trivial example.This will display "3 tests complete", and so on. There may be some other scenarios where different behavior is needed?
The text was updated successfully, but these errors were encountered: