Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718
  1. describe("#5188: non-string operation summary value", () => {
  2. it("should gracefully handle an object value for an operation summary", () => {
  3. cy
  4. .visit("?url=/documents/bugs/5188.yaml")
  5. .get("#operations-default-objectSummary")
  6. .click()
  7. .get(".opblock-summary-description")
  8. .contains("[object Object]")
  9. })
  10. it("should gracefully handle a missing value for an operation summary", () => {
  11. cy
  12. .visit("?url=/documents/bugs/5188.yaml")
  13. .get("#operations-default-noSummary")
  14. .click()
  15. // check for response rendering; makes sure the Operation itself rendered
  16. .contains("Invalid input")
  17. })
  18. })