This commit is contained in:
kakkokari-gtyih 2024-12-28 19:02:18 +09:00
parent 38fa15476f
commit 16cdcf24ad
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ describe('Timeline', () => {
async () => {
note = (await alice.client.request('notes/create', { text, ...noteParams })).createdNote;
},
'note', msg => msg.text === text,
'note', msg => (msg as Misskey.entities.Note).text === text,
channelParams,
);
strictEqual(streamingFired, expect);