Skip to content
Snippets Groups Projects
Unverified Commit a08a38c2 authored by かっこかり's avatar かっこかり Committed by GitHub
Browse files

fix(test): 初期セットアップで初期パスワードを入力していないのを修正 (#14685)

parent 650e22c9
No related branches found
No related tags found
No related merge requests found
......@@ -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);
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment