Skip to content

Commit

Permalink
Add forces
Browse files Browse the repository at this point in the history
  • Loading branch information
John Joyce authored and John Joyce committed Jul 1, 2024
1 parent 30a5868 commit d63c85e
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ describe("run managed ingestion", () => {
cy.clickOptionWithTextToScrollintoView("Other");

cy.waitTextVisible("source-type");
readyToTypeEditor().type("{ctrl}a").clear();
readyToTypeEditor().type("source:{enter}");
readyToTypeEditor().type(" type: demo-data");
readyToTypeEditor().type("{enter}");
readyToTypeEditor().type("{ctrl}a").clear({ force: true });
readyToTypeEditor().type("source:{enter}", { force: true });
readyToTypeEditor().type(" type: demo-data", { force: true });
readyToTypeEditor().type("{enter}", { force: true });
// no space because the editor starts new line at same indentation
readyToTypeEditor().type("config: {}");
readyToTypeEditor().type("config: {}", { force: true });
cy.clickOptionWithText("Next");
cy.clickOptionWithText("Next");

Expand Down

0 comments on commit d63c85e

Please sign in to comment.