This commit is contained in:
kakkokari-gtyih 2024-08-12 17:39:20 +09:00
parent 0e4bb2e37f
commit 6562fc75f0
1 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ describe('After setup instance', () => {
// /onboarding にリダイレクトされる // /onboarding にリダイレクトされる
cy.wait(5000); cy.wait(5000);
cy.url().should('be', Cypress.config().baseUrl + '/onboarding'); cy.url().should('equal', Cypress.config().baseUrl + '/onboarding');
// 「始める」 // 「始める」
// 最初にアニメーションがあるので待つ // 最初にアニメーションがあるので待つ
@ -116,7 +116,7 @@ describe('After setup instance', () => {
// ホームにリダイレクトされる // ホームにリダイレクトされる
cy.wait(5000); cy.wait(5000);
cy.url().should('be', Cypress.config().baseUrl + '/home'); cy.url().should('equal', Cypress.config().baseUrl + '/home');
}); });
it('signup with duplicated username', () => { it('signup with duplicated username', () => {