Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
This commit is contained in:
commit
4c6fc15858
|
@ -117,6 +117,7 @@ describe('Mute', () => {
|
||||||
assert.strictEqual(res.body.some((notification: any) => notification.userId === bob.id), true);
|
assert.strictEqual(res.body.some((notification: any) => notification.userId === bob.id), true);
|
||||||
assert.strictEqual(res.body.some((notification: any) => notification.userId === carol.id), false);
|
assert.strictEqual(res.body.some((notification: any) => notification.userId === carol.id), false);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('通知にミュートしているユーザーからのリプライが含まれない', async () => {
|
test('通知にミュートしているユーザーからのリプライが含まれない', async () => {
|
||||||
const aliceNote = await post(alice, { text: 'hi' });
|
const aliceNote = await post(alice, { text: 'hi' });
|
||||||
await post(bob, { text: '@alice hi', replyId: aliceNote.id });
|
await post(bob, { text: '@alice hi', replyId: aliceNote.id });
|
||||||
|
|
Loading…
Reference in New Issue