diff --git a/integrationTests/Ping/canConnect.spec.ts b/integrationTests/Ping/canConnect.spec.ts new file mode 100644 index 0000000..6d746f5 --- /dev/null +++ b/integrationTests/Ping/canConnect.spec.ts @@ -0,0 +1,11 @@ +import { OnspringClient } from '../../src/index'; +import { expect } from 'chai'; +import { baseURL, apiKey } from '../mochaRootHooks'; + +describe('canConnect', function () { + it('should be able to connect to the API', async function () { + const client = new OnspringClient(baseURL, apiKey); + const response = await client.canConnect(); + expect(response).to.be.true; + }); +});