From 4af13af9919de1ef134a9a8dc198507b9fd7c174 Mon Sep 17 00:00:00 2001 From: dblythy Date: Mon, 17 Oct 2022 10:53:10 +1100 Subject: [PATCH] ci: reduce timeout after idempotency tests (#8227) --- spec/Idempotency.spec.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spec/Idempotency.spec.js b/spec/Idempotency.spec.js index 813923b1..a45d1934 100644 --- a/spec/Idempotency.spec.js +++ b/spec/Idempotency.spec.js @@ -45,6 +45,10 @@ describe('Idempotency', () => { }); }); + afterAll(() => { + jasmine.DEFAULT_TIMEOUT_INTERVAL = process.env.PARSE_SERVER_TEST_TIMEOUT || 10000; + }); + // Tests it('should enforce idempotency for cloud code function', async () => { let counter = 0;