Skip to content

Commit

Permalink
Prettier is lacking
Browse files Browse the repository at this point in the history
  • Loading branch information
John Joyce committed Jul 1, 2024
1 parent e0b52f0 commit 92c8fa8
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
function readyToTypeEditor() {
return cy
.get(".monaco-editor textarea:first")
.click()
.focused();
return cy.get(".monaco-editor textarea:first").click().focused();
}

describe("run managed ingestion", () => {
Expand All @@ -16,7 +13,7 @@ describe("run managed ingestion", () => {
cy.clickOptionWithTextToScrollintoView("Other");

cy.waitTextVisible("source-type");
cy.wait(10000) // waits for 5 seconds
cy.wait(10000); // waits for 5 seconds

readyToTypeEditor().type("{ctrl}a").clear({ force: true });
readyToTypeEditor().type("source:{enter}", { force: true });
Expand Down

0 comments on commit 92c8fa8

Please sign in to comment.