Skip to content

Commit

Permalink
test: add check for misskey-dev#14728
Browse files Browse the repository at this point in the history
  • Loading branch information
zyoshoka committed Oct 9, 2024
1 parent 0c607d0 commit ef71ae0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/backend/test-federation/test/user.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,13 @@ describe('User', () => {
await bAdmin.client.request('admin/delete-account', { userId: aliceInB.id });
await sleep();

/**
* FIXME: remote account is not deleted!
* @see https://github.com/misskey-dev/misskey/issues/14728
*/
const deletedAlice = await bob.client.request('users/show', { userId: aliceInB.id });
assert(deletedAlice.id, aliceInB.id);

// TODO: why still following relation?
const following = await bob.client.request('users/following', { userId: bob.id });
strictEqual(following.length, 1);
Expand Down

0 comments on commit ef71ae0

Please sign in to comment.