1
0
Fork 0
mirror of synced 2024-07-09 00:06:05 +12:00
budibase/packages/builder/cypress/integration/createApp.spec.js

8 lines
227 B
JavaScript
Raw Normal View History

context("Create an Application", () => {
it("should create a new application", () => {
cy.createTestApp()
cy.visit(`localhost:${Cypress.env("PORT")}/_builder`)
cy.contains("Cypress Tests").should("exist")
})
2020-06-09 23:52:19 +12:00
})