From 85db9293a9c5b24158cdc82242b99c204aeefcd0 Mon Sep 17 00:00:00 2001 From: StevanFreeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Wed, 15 Feb 2023 00:01:07 -0600 Subject: [PATCH] feat: begin writing files integration tests --- integrationTests/Files/getFileInfoById.spec.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 integrationTests/Files/getFileInfoById.spec.ts diff --git a/integrationTests/Files/getFileInfoById.spec.ts b/integrationTests/Files/getFileInfoById.spec.ts new file mode 100644 index 0000000..e72ce82 --- /dev/null +++ b/integrationTests/Files/getFileInfoById.spec.ts @@ -0,0 +1,13 @@ +import { OnspringClient } from '../../src/index'; +import { expect } from 'chai'; +import { baseURL, apiKey } from '../mochaRootHooks'; + +describe('getFileInfoById', function () { + it('should return information about a file in an attachment field', async function () { + expect.fail('Not implemented'); + }); + + it('should return information about a file in an image field', async function () { + expect.fail('Not implemented'); + }); +});