feat: begin writing files integration tests

This commit is contained in:
StevanFreeborn
2023-02-15 00:01:07 -06:00
parent 9055e9c809
commit 85db9293a9
@@ -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');
});
});