diff --git a/packages/html/test/error-boundary.test.tsx b/packages/html/test/error-boundary.test.tsx
index f605d1c18..3d70a1fb3 100644
--- a/packages/html/test/error-boundary.test.tsx
+++ b/packages/html/test/error-boundary.test.tsx
@@ -42,8 +42,8 @@ describe('Error Boundary', () => {
it('Catches timed out promise', async () => {
const html = await (
<>
- 1} timeout={5}>
- {setTimeout(10, 2
)}
+ 1} timeout={10}>
+ {setTimeout(100, 2
)}
>
);
@@ -54,8 +54,8 @@ describe('Error Boundary', () => {
it('Renders non timed out promise', async () => {
const html = await (
<>
- 1} timeout={10}>
- {setTimeout(5, 2
)}
+ 1} timeout={100}>
+ {setTimeout(10, 2
)}
>
);
@@ -71,9 +71,9 @@ describe('Error Boundary', () => {
assert.ok(isTimeoutError(err));
return 1
;
}}
- timeout={5}
+ timeout={10}
>
- {setTimeout(10, 2
)}
+ {setTimeout(100, 2
)}
>
);