From aaaf6683870edc34d95a938f128d92c8b8db6233 Mon Sep 17 00:00:00 2001 From: Onur Temizkan Date: Wed, 19 Jul 2023 12:16:46 +0100 Subject: [PATCH] Increase `statusText` test timeouts. --- packages/remix/test/integration/test/server/action.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/remix/test/integration/test/server/action.test.ts b/packages/remix/test/integration/test/server/action.test.ts index a2a4632ba962..3b36557c5210 100644 --- a/packages/remix/test/integration/test/server/action.test.ts +++ b/packages/remix/test/integration/test/server/action.test.ts @@ -263,7 +263,7 @@ describe.each(['builtin', 'express'])('Remix API Actions with adapter = %s', ada ], }, }); - }); + }, 30000); it('handles a thrown `json()` error response without `statusText`', async () => { const env = await RemixTestEnv.init(adapter); @@ -318,7 +318,7 @@ describe.each(['builtin', 'express'])('Remix API Actions with adapter = %s', ada ], }, }); - }); + }, 30000); it('handles a thrown `json()` error response with string body', async () => { const env = await RemixTestEnv.init(adapter);