From c33d280177506b13d6cd2a184a9a646e7da6aa49 Mon Sep 17 00:00:00 2001 From: Arthur Fiorette Date: Mon, 25 Mar 2024 09:13:32 -0300 Subject: [PATCH] ci: increase sleep times because CI is slow --- packages/html/test/error-boundary.test.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/html/test/error-boundary.test.tsx b/packages/html/test/error-boundary.test.tsx index f605d1c1..3d70a1fb 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
)}
);