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
The test counts are incorrect, which becomes obvious when nesting describes
Our tests/init.lua without describe:
tests/init.lua
require "tests/all"
Results in 30 skipped, 188 passed, 218 total
30 skipped, 188 passed, 218 total
With an extra describe around it:
describe('all tests', function() require "tests/all" end)
Results in 30 skipped, 138 passed, 168 total
30 skipped, 138 passed, 168 total
The text was updated successfully, but these errors were encountered:
luttje
No branches or pull requests
The test counts are incorrect, which becomes obvious when nesting describes
Reproducing
Our
tests/init.lua
without describe:Results in
30 skipped, 188 passed, 218 total
With an extra describe around it:
Results in
30 skipped, 138 passed, 168 total
The text was updated successfully, but these errors were encountered: