Skip to content

Commit

Permalink
fix-test
Browse files Browse the repository at this point in the history
  • Loading branch information
penginn-net committed Nov 4, 2024
1 parent 3df00ab commit 7bb0576
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/backend/test/e2e/search-notes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ describe('検索', () => {

const rres5 = await api('notes/reactions/create', {
reaction: '❤',
noteId: noteSearchableByPrivate.id,
noteId: noteSearchableByNull.id,
}, alice);

assert.strictEqual(rres.status, 204);
Expand All @@ -812,10 +812,10 @@ describe('検索', () => {
noteId: noteSearchableByPublic.id,
}, alice);
const rdres2 = await api('notes/reactions/delete', {
noteId: noteSearchableByFollowersAndReacted.id,
noteId: noteSearchableByReacted.id,
}, alice);
const rdres3 = await api('notes/reactions/delete', {
noteId: noteSearchableByReacted.id,
noteId: noteSearchableByFollowersAndReacted.id,
}, alice);
const rdres4 = await api('notes/reactions/delete', {
noteId: noteSearchableByPrivate.id,
Expand Down

0 comments on commit 7bb0576

Please sign in to comment.