chore: bump CLI tests timeout

This commit is contained in:
jamesgeorge007
2024-07-22 19:19:57 +05:30
parent f913899ad5
commit bf5d62364d

View File

@@ -135,7 +135,7 @@ describe("hopp test [options] <file_path_or_id>", () => {
expect(error).toBeNull(); expect(error).toBeNull();
}, },
{ timeout: 10000 } { timeout: 50000 }
); );
test("Persists environment variables set in the pre-request script for consumption in the test script", async () => { 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] <file_path_or_id>", () => {
expect(error).toBeNull(); expect(error).toBeNull();
}); });
}, },
{ timeout: 10000 } { timeout: 20000 }
); );
}); });