Skip to content

Commit

Permalink
ci: reduce timeout after idempotency tests (#8227)
Browse files Browse the repository at this point in the history
  • Loading branch information
dblythy committed Oct 16, 2022
1 parent 2b00c5b commit 4af13af
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions spec/Idempotency.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4af13af

Please sign in to comment.