From b6bc26eabdace4a4244cf058b25f010bb634bc7d Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Fri, 17 Feb 2023 00:32:11 -0600 Subject: [PATCH] fix: add timeout and retry settings to canConnect integration test --- integrationTests/Ping/canConnect.spec.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integrationTests/Ping/canConnect.spec.ts b/integrationTests/Ping/canConnect.spec.ts index 6d746f5..8fee873 100644 --- a/integrationTests/Ping/canConnect.spec.ts +++ b/integrationTests/Ping/canConnect.spec.ts @@ -3,6 +3,9 @@ import { expect } from 'chai'; import { baseURL, apiKey } from '../mochaRootHooks'; describe('canConnect', function () { + this.timeout(30000); + this.retries(3); + it('should be able to connect to the API', async function () { const client = new OnspringClient(baseURL, apiKey); const response = await client.canConnect();