fix(test): 初期セットアップで初期パスワードを入力していないのを修正 (#14685)
This commit is contained in:
parent
650e22c90d
commit
a08a38c29a
|
@ -48,6 +48,7 @@ Cypress.Commands.add('registerUser', (username, password, isAdmin = false) => {
|
|||
cy.request('POST', route, {
|
||||
username: username,
|
||||
password: password,
|
||||
...(isAdmin ? { setupPassword: 'example_password_please_change_this_or_you_will_get_hacked' } : {}),
|
||||
}).its('body').as(username);
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue