Skip to content

Commit

Permalink
Issue #225 - bandaid to workaround failing cypress tests due to issue…
Browse files Browse the repository at this point in the history
… described in issue #225 (#229)

Bit heavy handed, but I don't want this issue to block any further development.
             Will have a better fix when I find the solution.
  • Loading branch information
vqmarkman authored Sep 2, 2023
1 parent 27214f4 commit 5305b1a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cypress/e2e/labels.spec.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ describe("Labels section", () => {
it("Menu: Labels. Validate that New/Create/Cancel buttons don't result in failure to load the page", () => {
cy.visit("/");

cy.wait(10000);

cy.get("span")
.contains("Labels")
.should("be.visible")
Expand Down Expand Up @@ -61,6 +63,8 @@ describe("Labels section", () => {

cy.visit("/");

cy.wait(10000);

cy.get("span")
.contains("Labels")
.should("be.visible")
Expand Down
2 changes: 2 additions & 0 deletions cypress/e2e/probes.spec.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ describe("Probes section", () => {
it("Menu: Probes", () => {
cy.visit("/");

cy.wait(10000);

cy.get("span")
.contains("Probes")
.should("be.visible")
Expand Down
2 changes: 2 additions & 0 deletions cypress/e2e/queries.spec.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ describe("Queries section", () => {
it("Menu: Queries (Top Spenders)", () => {
cy.visit("/");

cy.wait(10000);

cy.get("span")
.contains("Queries")
.should("be.visible")
Expand Down
2 changes: 2 additions & 0 deletions cypress/e2e/warehouse.spec.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ describe("Warehouse section", () => {

cy.visit("/");

cy.wait(10000);

const stringList= ["365", "90", "30", "7"];

cy.get("span")
Expand Down

0 comments on commit 5305b1a

Please sign in to comment.