選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

12 行
406 B

  1. // http://github.com/swagger-api/swagger-ui/issues/5453
  2. describe("#5453: Responses w/o `content` should not render ModelExample", () => {
  3. it("should not render a ModelExample section", () => {
  4. cy.visit("/?url=/documents/bugs/5453.yaml")
  5. .get("#operations-default-get_foo")
  6. .click()
  7. .get(".responses-inner")
  8. .should("not.have.descendants", ".model-example")
  9. })
  10. })