Skip to content

Commit

Permalink
fix(html): increased sleep times because CI is slow
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Mar 26, 2024
1 parent 7a85f92 commit 06ed69d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/html/test/suspense.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ describe('Suspense', () => {
<div>
{Array.from({ length: seconds }, (_, i) => (
<Suspense rid={r} fallback={<div>{seconds - i} loading</div>}>
<SleepForMs ms={seconds - i} />
<SleepForMs ms={(seconds - i) * 100}>{seconds - i}</SleepForMs>
</Suspense>
))}
</div>
Expand Down

0 comments on commit 06ed69d

Please sign in to comment.