1
0
mirror of https://git.boykissers.com/pawkey/pawkey-sk.git synced 2025-12-20 04:04:16 +00:00

fix tests

This commit is contained in:
syuilo
2025-03-29 17:00:01 +09:00
parent ae59578115
commit 7fd3adedee
2 changed files with 3 additions and 0 deletions

View File

@@ -84,6 +84,7 @@ describe('ユーザー', () => {
followingVisibility: user.followingVisibility,
followersVisibility: user.followersVisibility,
chatScope: user.chatScope,
canChat: user.canChat,
roles: user.roles,
memo: user.memo,
});
@@ -346,6 +347,7 @@ describe('ユーザー', () => {
assert.strictEqual(response.followingVisibility, 'public');
assert.strictEqual(response.followersVisibility, 'public');
assert.strictEqual(response.chatScope, 'mutual');
assert.strictEqual(response.canChat, true);
assert.deepStrictEqual(response.roles, []);
assert.strictEqual(response.memo, null);