This repository has been archived on 2022-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
foundkey.js/test-d/api.ts
syuilo 2f8f6431d1 ✌️
2021-05-16 18:18:45 +09:00

14 lines
406 B
TypeScript

/**
* 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);
});
});