2021-03-05 14:52:26 +01:00
|
|
|
context("Create an Application", () => {
|
|
|
|
it("should create a new application", () => {
|
2021-04-15 19:29:11 +02:00
|
|
|
cy.login()
|
2021-03-05 15:36:38 +01:00
|
|
|
cy.createTestApp()
|
2021-04-01 11:06:22 +02:00
|
|
|
cy.visit(`localhost:${Cypress.env("PORT")}/builder`)
|
2021-03-05 15:36:38 +01:00
|
|
|
cy.contains("Cypress Tests").should("exist")
|
2021-03-05 14:52:26 +01:00
|
|
|
})
|
2020-06-09 13:52:19 +02:00
|
|
|
})
|