22 lines
527 B
JavaScript
22 lines
527 B
JavaScript
/**
|
|
* @prettier
|
|
*/
|
|
|
|
describe("JSON Schema 2020-12 title keyword", () => {
|
|
it("should render a correct title for schemas", () => {
|
|
cy.visit("/?url=/documents/features/json-schema-2020-12-title.yaml")
|
|
.get(".json-schema-2020-12__title")
|
|
.eq(0)
|
|
.contains("My Pet")
|
|
.should("exist")
|
|
.get(".json-schema-2020-12__title")
|
|
.eq(1)
|
|
.contains("My Pets")
|
|
.should("exist")
|
|
.get(".json-schema-2020-12__title")
|
|
.eq(2)
|
|
.contains("Error")
|
|
.should("exist")
|
|
})
|
|
})
|