Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
penginn-net committed Sep 24, 2024
1 parent b59e284 commit 8301279
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/backend/test/e2e/search-notes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ describe('検索', () => {

await api('follwing/create', { userId: tom.id }, alice);
daveNote = await post(dave, { text: 'ff_test', visibility: 'followers' });
daveNoteDirect = await post(dave, { text: 'ff_test', visibility: 'specified', visibleUserIds: [alice.id] });
daveNoteDirect = await post(dave, { text: 'ff_test', visibility: 'specified', visibleUserIds: [] });
tomNote = await post(tom, { text: 'ff_test', visibility: 'followers' });
tomNoteDirect = await post(tom, { text: 'ff_test', visibility: 'specified', visibleUserIds: [] });
tomNoteDirect = await post(tom, { text: 'ff_test', visibility: 'specified', visibleUserIds: [alice.id] });

reactedNote = await post(carol, { text: 'indexable_text' });
votedNote = await post(carol, {
Expand Down

0 comments on commit 8301279

Please sign in to comment.