From f7ac9742a6ed59ef02e334c9318f4c3583d5ff0a Mon Sep 17 00:00:00 2001 From: dblythy Date: Wed, 12 Oct 2022 15:51:44 +1100 Subject: [PATCH] ci: reduce timeout after idempotency tests --- spec/Idempotency.spec.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spec/Idempotency.spec.js b/spec/Idempotency.spec.js index 813923b1ff..a45d19343c 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;