1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00
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-16 05:29:11 +12:00
cy.login()
cy.createTestApp()
2022-01-20 04:19:02 +13:00
cy.visit(`localhost:${Cypress.env("PORT")}/builder`)
cy.contains("Cypress Tests").should("exist")
})
2020-06-09 23:52:19 +12:00
})