Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

1234567891011
  1. // http://github.com/swagger-api/swagger-ui/issues/5455
  2. describe("#5455: Request bodies w/o `examples` should not render a dropdown", () => {
  3. it("should not render a <select> element", () => {
  4. cy.visit("/?url=/documents/bugs/5455.yaml")
  5. .get("#operations-default-post_foo")
  6. .click()
  7. .get(".opblock-section-request-body > .opblock-description-wrapper")
  8. .should("not.have.descendants", "select")
  9. })
  10. })