Some checks failed
Node.js CI / build (push) Failing after 2s
Node.js CI / e2e-tests (+(a11y|security|bugs)/**/*cy.js) (push) Failing after 2s
Node.js CI / e2e-tests (features/**/!(o|d|m)*.cy.js) (push) Failing after 2s
Node.js CI / e2e-tests (features/**/+(o|d)*.cy.js) (push) Failing after 2s
Node.js CI / e2e-tests (features/**/m*.cy.js) (push) Failing after 2s
CodeQL / Analyze (javascript) (push) Failing after 2m49s
Security scan for docker image / build (push) Failing after 51s
51 lines
1.5 KiB
JavaScript
Executable File
51 lines
1.5 KiB
JavaScript
Executable File
describe("Model collapse/expand feature", () => {
|
|
describe("in Swagger 2", () => {
|
|
const swagger2BaseUrl = "/?deepLinking=true&url=/documents/features/models.swagger.yaml"
|
|
const urlFragment = "#/definitions/Pet"
|
|
ModelCollapseTest(swagger2BaseUrl, urlFragment)
|
|
})
|
|
describe("in OpenAPI 3", () => {
|
|
const openAPI3BaseUrl = "/?deepLinking=true&url=/documents/features/models.openapi.yaml"
|
|
ModelCollapseTest(openAPI3BaseUrl)
|
|
})
|
|
})
|
|
|
|
function ModelCollapseTest(baseUrl) {
|
|
it("Models section should be expanded on load", () => {
|
|
cy.visit(baseUrl)
|
|
.get(".models")
|
|
.should("have.class", "is-open")
|
|
.get("#model-Pet")
|
|
.should("exist")
|
|
})
|
|
|
|
it("Models section should collapse and expand when toggled", () => {
|
|
cy.visit(baseUrl)
|
|
.get(".models h4 .models-control")
|
|
.click()
|
|
.get(".models")
|
|
.should("not.have.class", "is-open")
|
|
.get("#model-Order")
|
|
.should("not.exist")
|
|
.get(".models h4 .models-control")
|
|
.click()
|
|
.get(".models")
|
|
.should("have.class", "is-open")
|
|
.get("#model-Order")
|
|
.should("exist")
|
|
})
|
|
|
|
it("Model should collapse and expand when toggled clicking button", () => {
|
|
cy.visit(baseUrl)
|
|
.get("#model-User .model-box .model-box-control")
|
|
.click()
|
|
.get("#model-User .model-box .model .inner-object")
|
|
.should("exist")
|
|
.get("#model-User .model-box .model-box-control")
|
|
.first()
|
|
.click()
|
|
.get("#model-User .model-box .model .inner-object")
|
|
.should("not.exist")
|
|
})
|
|
}
|