2020-06-11 13:20:13 +02:00
|
|
|
context('Create an Application', () => {
|
2020-06-09 13:52:19 +02:00
|
|
|
|
|
|
|
beforeEach(() => {
|
2020-08-05 16:18:28 +02:00
|
|
|
cy.server()
|
2020-06-09 13:52:19 +02:00
|
|
|
cy.visit('localhost:4001/_builder')
|
|
|
|
})
|
|
|
|
|
|
|
|
// https://on.cypress.io/interacting-with-elements
|
|
|
|
|
|
|
|
it('should create a new application', () => {
|
|
|
|
// https://on.cypress.io/type
|
2020-06-11 12:04:31 +02:00
|
|
|
cy.createApp('My Cool App', 'This is a description')
|
2020-06-09 13:52:19 +02:00
|
|
|
|
|
|
|
cy.visit('localhost:4001/_builder')
|
|
|
|
|
2020-06-11 12:04:31 +02:00
|
|
|
cy.contains('My Cool App').should('exist')
|
2020-06-09 13:52:19 +02:00
|
|
|
})
|
|
|
|
})
|