25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

12 satır
433 B

  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. })