From bf5d62364dd9b9e57a29711a98c7051fa0edb047 Mon Sep 17 00:00:00 2001 From: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com> Date: Mon, 22 Jul 2024 19:19:57 +0530 Subject: [PATCH] chore: bump CLI tests timeout --- .../hoppscotch-cli/src/__tests__/e2e/commands/test.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/hoppscotch-cli/src/__tests__/e2e/commands/test.spec.ts b/packages/hoppscotch-cli/src/__tests__/e2e/commands/test.spec.ts index 1e5846577..f0c687102 100644 --- a/packages/hoppscotch-cli/src/__tests__/e2e/commands/test.spec.ts +++ b/packages/hoppscotch-cli/src/__tests__/e2e/commands/test.spec.ts @@ -135,7 +135,7 @@ describe("hopp test [options] ", () => { expect(error).toBeNull(); }, - { timeout: 10000 } + { timeout: 50000 } ); test("Persists environment variables set in the pre-request script for consumption in the test script", async () => { @@ -329,7 +329,7 @@ describe("hopp test [options] ", () => { expect(error).toBeNull(); }); }, - { timeout: 10000 } + { timeout: 20000 } ); });