You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 line
474 B

  1. describe("#4867: callback parameter rendering", () => {
  2. it("should render parameters correctly", () => {
  3. cy
  4. .visit("/?url=/documents/bugs/4867.yaml")
  5. .get("#operations-default-myOp")
  6. .click()
  7. .contains("Callbacks")
  8. .click()
  9. .get(".callbacks-container .opblock-summary-path")
  10. .should("have.attr", "data-path", "http://$request.query.url")
  11. .click()
  12. .get(".parameters-container")
  13. .contains("myParam")
  14. })
  15. })