Skip to content

Commit

Permalink
Remove suspense from e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoAndai committed Jan 8, 2025
1 parent c1e0729 commit 14bc608
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test/e2e/TestViewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,9 @@ function TestViewer(props) {
}, []);

return (
<React.Suspense fallback={<div aria-busy />}>
<div aria-busy={!ready} data-testid="testcase">
{children}
</div>
</React.Suspense>
<div aria-busy={!ready} data-testid="testcase">
{children}
</div>
);
}

Expand Down

0 comments on commit 14bc608

Please sign in to comment.