#4033 にテストケースを追従

This commit is contained in:
rinsuki 2019-10-25 06:53:15 +09:00
parent d92285b203
commit c203b9cebe
1 changed files with 2 additions and 2 deletions

View File

@ -368,9 +368,9 @@ describe('API visibility', () => {
assert.strictEqual(res.body.text, '@target x'); assert.strictEqual(res.body.text, '@target x');
})); }));
it('[show] followers-mentionを非フォロワーがメンションされていても見れない', async(async () => { it('[show] followers-mentionをメンションされていれば非フォロワーでも見れる', async(async () => {
const res = await show(folM.id, target); const res = await show(folM.id, target);
assert.strictEqual(res.body.isHidden, true); assert.strictEqual(res.body.text, '@target x');
})); }));
it('[show] followers-mentionをフォロワーが見れる', async(async () => { it('[show] followers-mentionをフォロワーが見れる', async(async () => {