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'); + }); +});