Sharkey/test-d/api.ts

15 lines
406 B
TypeScript
Raw Normal View History

2021-05-16 12:18:45 +03:00
/**
* Unit testing TypeScript types.
* with https://github.com/SamVerschueren/tsd
*/
import { expectType } from 'tsd';
import * as Misskey from '../src';
describe('API', () => {
test('returns node that has sprcified type', async () => {
const res = await Misskey.api.request('https://misskey.test', 'meta', { detail: true }, 'TOKEN');
expectType<Misskey.entities.InstanceMetadata>(res);
});
});