40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
import filterTests from "../support/filterTests"
|
|
|
|
filterTests(["smoke", "all"], () => {
|
|
context("Screen Tests", () => {
|
|
before(() => {
|
|
cy.login()
|
|
cy.createTestApp()
|
|
cy.navigateToFrontend()
|
|
})
|
|
|
|
it("Should successfully create a screen", () => {
|
|
cy.createScreen("Test Screen", "/test")
|
|
cy.get(".nav-items-container").within(() => {
|
|
cy.contains("/test").should("exist")
|
|
})
|
|
})
|
|
|
|
it("Should update the url", () => {
|
|
cy.createScreen("Test Screen", "test with spaces")
|
|
cy.get(".nav-items-container").within(() => {
|
|
cy.contains("/test-with-spaces").should("exist")
|
|
})
|
|
})
|
|
|
|
it("Should create a blank screen with the selected access level", () => {
|
|
cy.createScreen("Test Screen Admin", "admin only", "Admin")
|
|
|
|
cy.get(".nav-items-container").within(() => {
|
|
cy.contains("/admin-only").should("exist")
|
|
})
|
|
|
|
cy.createScreen("Test Screen Public", "open to all", "Public")
|
|
|
|
cy.get(".nav-items-container").within(() => {
|
|
cy.contains("/open-to-all").should("exist")
|
|
})
|
|
})
|
|
})
|
|
})
|