14 lines
441 B
TypeScript
14 lines
441 B
TypeScript
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');
|
||
|
|
});
|
||
|
|
});
|