您最多选择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. })