Skip to content

Commit

Permalink
chore: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirpotekhin committed Sep 8, 2023
1 parent c0ba161 commit ccf6bc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,6 @@ describe('Phone', () => {
});

function openCountry(code: string): void {
cy.visit(`/${DemoPath.PhonePackage}/API?countryCode=${code}`);
cy.visit(`/${DemoPath.PhonePackage}/API?countryIsoCode=${code}`);
cy.get('#demo-content input').should('be.visible').first().focus().as('input');
}
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,6 @@ describe('Phone', () => {
});

function openCountry(code: string): void {
cy.visit(`/${DemoPath.PhonePackage}/API?strict=false&countryCode=${code}`);
cy.visit(`/${DemoPath.PhonePackage}/API?strict=false&countryIsoCode=${code}`);
cy.get('#demo-content input').should('be.visible').first().focus().as('input');
}

0 comments on commit ccf6bc9

Please sign in to comment.