13 lines
345 B
JavaScript
13 lines
345 B
JavaScript
import filterTests from '../support/filterTests'
|
|
|
|
filterTests(['smoke', 'all'], () => {
|
|
context("Create an Application", () => {
|
|
it("should create a new application", () => {
|
|
cy.login()
|
|
cy.createTestApp()
|
|
cy.visit(`${Cypress.config().baseUrl}/builder`)
|
|
cy.contains("Cypress Tests").should("exist")
|
|
})
|
|
})
|
|
})
|