2022-01-21 13:43:27 +01:00
|
|
|
import filterTests from '../support/filterTests'
|
|
|
|
|
|
|
|
filterTests(['smoke', 'all'], () => {
|
2022-02-17 15:06:17 +01:00
|
|
|
context("Create an Application", () => {
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should create a new application", () => {
|
|
|
|
cy.login()
|
|
|
|
cy.createTestApp()
|
|
|
|
cy.visit(`${Cypress.config().baseUrl}/builder`)
|
|
|
|
cy.contains("Cypress Tests").should("exist")
|
|
|
|
})
|
|
|
|
})
|
2020-06-09 13:52:19 +02:00
|
|
|
})
|