diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2024-03-01 17:27:11 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2024-03-01 17:27:11 +0900 |
| commit | 4c6fc1585870d729996f2c2bbb45f7f71928c4c9 (patch) | |
| tree | b8b5a75b9554fc8e498f3d398ec20669b210fefb | |
| parent | format (diff) | |
| parent | Update packages/backend/test/e2e/mute.ts (diff) | |
| download | misskey-4c6fc1585870d729996f2c2bbb45f7f71928c4c9.tar.gz misskey-4c6fc1585870d729996f2c2bbb45f7f71928c4c9.tar.bz2 misskey-4c6fc1585870d729996f2c2bbb45f7f71928c4c9.zip | |
Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
| -rw-r--r-- | packages/backend/test/e2e/mute.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/backend/test/e2e/mute.ts b/packages/backend/test/e2e/mute.ts index 1e4225184a..1d28e07b7d 100644 --- a/packages/backend/test/e2e/mute.ts +++ b/packages/backend/test/e2e/mute.ts @@ -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 === carol.id), false); }); + test('通知にミュートしているユーザーからのリプライが含まれない', async () => { const aliceNote = await post(alice, { text: 'hi' }); await post(bob, { text: '@alice hi', replyId: aliceNote.id }); |