13 lines
356 B
JavaScript
13 lines
356 B
JavaScript
|
|
context('Screen Tests', () => {
|
|
before(() => {
|
|
cy.server()
|
|
cy.visit(`localhost:${Cypress.env("PORT")}/_builder`)
|
|
cy.createApp('Conor Cy App', 'Table App Description')
|
|
cy.navigateToFrontend()
|
|
})
|
|
|
|
it('Should successfully create a screen', () => {
|
|
cy.createScreen("test Screen", "/test")
|
|
})
|
|
}) |