We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c607d0 commit ef71ae0Copy full SHA for ef71ae0
packages/backend/test-federation/test/user.test.ts
@@ -420,6 +420,13 @@ describe('User', () => {
420
await bAdmin.client.request('admin/delete-account', { userId: aliceInB.id });
421
await sleep();
422
423
+ /**
424
+ * FIXME: remote account is not deleted!
425
+ * @see https://github.com/misskey-dev/misskey/issues/14728
426
+ */
427
+ const deletedAlice = await bob.client.request('users/show', { userId: aliceInB.id });
428
+ assert(deletedAlice.id, aliceInB.id);
429
+
430
// TODO: why still following relation?
431
const following = await bob.client.request('users/following', { userId: bob.id });
432
strictEqual(following.length, 1);
0 commit comments