messagingは廃止されている(テストのビルドエラー解消)

This commit is contained in:
osamu 2023-11-25 21:14:15 +09:00
parent 0874bd91ba
commit 6a9fd7dd60
1 changed files with 0 additions and 14 deletions

View File

@ -9,18 +9,4 @@ describe('Streaming', () => {
expectType<Misskey.entities.Notification>(notification);
});
});
test('params type', async () => {
const stream = new Misskey.Stream('https://misskey.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<Misskey.entities.MessagingMessage>(message);
});
});
});