Skip to content
New issue

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

Test results are cut off #1

Open
Lakitna opened this issue May 12, 2022 · 0 comments
Open

Test results are cut off #1

Lakitna opened this issue May 12, 2022 · 0 comments

Comments

@Lakitna
Copy link

Lakitna commented May 12, 2022

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

    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;
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant