-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate custom selects (Chakra -> Ant) (#5502)
- Loading branch information
1 parent
f80dddb
commit 43b434b
Showing
68 changed files
with
777 additions
and
2,395 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -274,7 +274,10 @@ describe("Privacy Requests", () => { | |
it("shows configured fields and values", () => { | ||
cy.getByTestId("submit-request-btn").click(); | ||
cy.wait("@getPrivacyCenterConfig"); | ||
cy.getSelectValueContainer("input-policy_key").type("a{enter}"); | ||
|
||
cy.getByTestId("controlled-select-policy_key").antSelect( | ||
"Access your data", | ||
); | ||
cy.getByTestId("input-identity.phone").should("not.exist"); | ||
cy.getByTestId("input-identity.email").should("exist"); | ||
cy.getByTestId( | ||
|
@@ -292,7 +295,7 @@ describe("Privacy Requests", () => { | |
it("can submit a privacy request", () => { | ||
cy.getByTestId("submit-request-btn").click(); | ||
cy.wait("@getPrivacyCenterConfig"); | ||
cy.getSelectValueContainer("input-policy_key").type("a{enter}"); | ||
cy.getByTestId("controlled-select-policy_key").type("a{enter}"); | ||
cy.getByTestId("input-identity.email").type("[email protected]"); | ||
cy.getByTestId( | ||
"input-custom_privacy_request_fields.required_field.value", | ||
|
Oops, something went wrong.