From 302c483f0a0a94c3222f98f4355abd700095953a Mon Sep 17 00:00:00 2001 From: Vladimir Gorej Date: Wed, 19 Jan 2022 13:51:52 +0100 Subject: [PATCH] revert: add wait time for bugs/5043 to resolve spec (#7769) (#7775) Refs affd4b9 --- test/e2e-cypress/tests/bugs/5043.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/e2e-cypress/tests/bugs/5043.js b/test/e2e-cypress/tests/bugs/5043.js index 6bd688dd..f1fff97d 100644 --- a/test/e2e-cypress/tests/bugs/5043.js +++ b/test/e2e-cypress/tests/bugs/5043.js @@ -2,7 +2,6 @@ describe("#5043: path-level $ref path items should inherit global consumes/produ it("should render consumes options correctly", () => { cy .visit("/?url=/documents/bugs/5043/swagger.yaml") - .wait(500) // HACK: wait for external spec ref to resolve (swagger.yaml->status.yaml) .get("#operations-pet-findPetsByStatus") .click() .get(".try-out__btn") @@ -17,7 +16,6 @@ describe("#5043: path-level $ref path items should inherit global consumes/produ it("should render produces options correctly", () => { cy .visit("/?url=/documents/bugs/5043/swagger.yaml") - .wait(500) // HACK: wait for external spec ref to resolve (swagger.yaml->status.yaml) .get("#operations-pet-findPetsByStatus") .click() .get(".try-out__btn") @@ -29,4 +27,4 @@ describe("#5043: path-level $ref path items should inherit global consumes/produ .get(".body-param-content-type select") .contains("text/csv") }) -}) \ No newline at end of file +})