2020-06-24 17:16:06 +02:00
|
|
|
|
|
|
|
context('Screen Tests', () => {
|
|
|
|
before(() => {
|
2020-08-05 16:18:28 +02:00
|
|
|
cy.server()
|
2021-02-03 17:09:48 +01:00
|
|
|
cy.visit(`localhost:${Cypress.env("PORT")}/_builder`)
|
2020-10-13 12:19:34 +02:00
|
|
|
cy.createApp('Conor Cy App', 'Table App Description')
|
2020-06-24 17:16:06 +02:00
|
|
|
cy.navigateToFrontend()
|
|
|
|
})
|
|
|
|
|
2020-11-20 12:41:17 +01:00
|
|
|
it('Should successfully create a screen', () => {
|
2020-08-05 16:18:28 +02:00
|
|
|
cy.createScreen("test Screen", "/test")
|
2020-06-24 17:16:06 +02:00
|
|
|
})
|
|
|
|
})
|