Skip to content
Snippets Groups Projects
Commit 1ca0976e authored by MeiMei's avatar MeiMei Committed by syuilo
Browse files

Fix visibility test (#4031)

parent 7fbfd178
No related branches found
No related tags found
No related merge requests found
......@@ -302,9 +302,9 @@ describe('API visibility', () => {
expect(res.body).have.property('text').eql('x');
}));
it('[show] followers-replyをされた人がフォロワーでなくても見れ', async(async () => {
it('[show] followers-replyを非フォロワーはリプライされていても見れない', async(async () => {
const res = await show(folR.id, target);
expect(res.body).have.property('text').eql('x');
expect(res.body).have.property('isHidden').eql(true);
}));
it('[show] followers-replyをフォロワーが見れる', async(async () => {
......@@ -434,9 +434,9 @@ describe('API visibility', () => {
expect(res.body).have.property('text').eql('@target x');
}));
it('[show] followers-mentionをされた人がフォロワーでなくても見れ', async(async () => {
it('[show] followers-mentionを非フォロワーはメンションされていても見れない', async(async () => {
const res = await show(folM.id, target);
expect(res.body).have.property('text').eql('@target x');
expect(res.body).have.property('isHidden').eql(true);
}));
it('[show] followers-mentionをフォロワーが見れる', async(async () => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment