Skip to content

Commit

Permalink
More linting
Browse files Browse the repository at this point in the history
  • Loading branch information
svevang committed Jul 1, 2024
1 parent 7be4ba6 commit 3824387
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"no-use-before-define": "off",
"no-unused-vars": "off"
},
"overrides": [
{
"files": "**/*.ts",
Expand Down
12 changes: 6 additions & 6 deletions cypress/e2e/augury.cy.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/// <reference types="cypress" />
/// <reference types="@types/jquery" />
/* global JQuery */

describe("Augury", () => {
beforeEach(() => {
Expand Down Expand Up @@ -110,11 +109,12 @@ describe("Augury", () => {
cy.get("#campaign_id + .ss-main").click(); // Open the dropdown

// The dropdown is disconnected/supra of the #campaign_id element
cy.get(".ss-open-below .ss-search input[type=search]").click({ multiple: true }).type("C");
cy.get(".ss-open-below .ss-search input[type=search]").click({ multiple: true });
cy.get(".ss-open-below .ss-search input[type=search]").type("C");

cy.contains("Campaign Acceptance Test");
cy.get(".ss-open-below .ss-search input[type=search]")
.click({ multiple: true })
.type("{downArrow}{enter}");
cy.get(".ss-open-below .ss-search input[type=search]").type("{downArrow}{enter}");
cy.get(".ss-open-below .ss-search input[type=search]").click({ multiple: true });

cy.get("#campaign_id").closest(".card").find(".btn").click();

Expand Down

0 comments on commit 3824387

Please sign in to comment.