budibase/packages/builder/cypress/integration/createApp.spec.js

9 lines
241 B
JavaScript
Raw Normal View History

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