1
0
Fork 0
mirror of synced 2024-07-01 04:21:06 +12:00
budibase/packages/builder/cypress/integration/createApp.spec.js
2021-04-15 18:29:11 +01:00

9 lines
241 B
JavaScript

context("Create an Application", () => {
it("should create a new application", () => {
cy.login()
cy.createTestApp()
cy.visit(`localhost:${Cypress.env("PORT")}/builder`)
cy.contains("Cypress Tests").should("exist")
})
})