sfm-js/test-d/index.ts
2021-03-30 22:59:14 +09:00

14 lines
348 B
TypeScript

/**
* Unit testing TypeScript types.
* with https://github.com/SamVerschueren/tsd
*/
import { expectType } from 'tsd';
import { getNodeByType, MfmUrl } from '../built';
describe('#getNodeByType', () => {
it('returns node that has sprcified type', () => {
const x = null as unknown as getNodeByType<'url'>;
expectType<MfmUrl>(x);
});
});