Skip to content

Commit

Permalink
attempting to fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkokari-gtyih committed Dec 29, 2023
1 parent b73b816 commit f59198d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/backend/test/e2e/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ describe('ユーザー', () => {
policies: user.policies,
...(security ? {
email: user.email,
signupReason: user.signupReason,
emailVerified: user.emailVerified,
securityKeysList: user.securityKeysList,
} : {}),
Expand Down Expand Up @@ -430,6 +431,7 @@ describe('ユーザー', () => {
assert.deepStrictEqual(response.loggedInDays, 0);
assert.deepStrictEqual(response.policies, DEFAULT_POLICIES);
assert.notStrictEqual(response.email, undefined);
assert.notStrictEqual(response.signupReason, undefined);
assert.strictEqual(response.emailVerified, false);
assert.deepStrictEqual(response.securityKeysList, []);
});
Expand Down

0 comments on commit f59198d

Please sign in to comment.