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
I have a lot of test results in my groups due to the use of test().with(). My biggest group has 557 tests in it.
test().with()
The report cuts of the results when they don't fit the height of my window. I want to be able to scroll to see all results.
It's a simple fix, just remove these two lines from the CSS
body { margin: 0px; font-family: monospace; - height: 100%; - overflow: hidden; }
That actually broke the page with only a few tests. Something like this should work though :)
.test-report { display: flex; align-items: center; flex-direction: column; text-align: center; width: 75%; + overflow: auto; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a lot of test results in my groups due to the use of
test().with()
. My biggest group has 557 tests in it.The report cuts of the results when they don't fit the height of my window. I want to be able to scroll to see all results.
It's a simple fix, just remove these two lines from the CSS
That actually broke the page with only a few tests. Something like this should work though :)
.test-report { display: flex; align-items: center; flex-direction: column; text-align: center; width: 75%; + overflow: auto; }
The text was updated successfully, but these errors were encountered: