FoundKey/packages/foundkey-js/test-d/streaming.ts
Francis Dinh 79662272ba
Some checks failed
ci/woodpecker/push/lint-client Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/lint-foundkey-js Pipeline was successful
ci/woodpecker/push/lint-backend Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/pr/lint-backend Pipeline was successful
ci/woodpecker/pr/lint-client Pipeline failed
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/lint-foundkey-js Pipeline was successful
ci/woodpecker/pr/test Pipeline failed
foundkey-js: update test domain to foundkey.test
2022-09-27 22:38:09 -04:00

26 lines
984 B
TypeScript

import { expectType } from 'tsd';
import * as foundkey from '../src';
describe('Streaming', () => {
test('emit type', async () => {
const stream = new foundkey.Stream('https://foundkey.test', { token: 'TOKEN' });
const mainChannel = stream.useChannel('main');
mainChannel.on('notification', notification => {
expectType<foundkey.entities.Notification>(notification);
});
});
test('params type', async () => {
const stream = new foundkey.Stream('https://foundkey.test', { token: 'TOKEN' });
// TODO: 「stream.useChannel の第二引数として受け入れる型が
// {
// otherparty?: User['id'] | null;
// group?: UserGroup['id'] | null;
// }
// になっている」というテストを行いたいけどtsdでの書き方がわからない
const messagingChannel = stream.useChannel('messaging', { otherparty: 'aaa' });
messagingChannel.on('message', message => {
expectType<foundkey.entities.MessagingMessage>(message);
});
});
});