This update required changing the configuration and test directory structure. Some tests needed to be amended as well to compensate for new Cypress APIs.
16 lines
518 B
JavaScript
16 lines
518 B
JavaScript
describe("OpenAPI 3.x.y Badge", () => {
|
|
it("should display light green badge with version indicator for OpenAPI 3.0.x", () => {
|
|
cy.visit("/?url=/documents/petstore-expanded.openapi.yaml")
|
|
.get("#swagger-ui")
|
|
.get("pre.version")
|
|
.contains("OAS 3.0")
|
|
})
|
|
|
|
it("should display light green badge with version indicator for OpenAPI 3.1.0", () => {
|
|
cy.visit("/?url=/documents/features/info-openAPI31.yaml")
|
|
.get("#swagger-ui")
|
|
.get("pre.version")
|
|
.contains("OAS 3.1")
|
|
})
|
|
})
|