2020-06-11 13:20:13 +02:00
|
|
|
context('Create a User', () => {
|
2020-06-11 12:04:31 +02:00
|
|
|
|
|
|
|
before(() => {
|
2020-08-05 16:18:28 +02:00
|
|
|
cy.server()
|
2020-06-11 12:04:31 +02:00
|
|
|
cy.visit('localhost:4001/_builder')
|
|
|
|
// https://on.cypress.io/type
|
|
|
|
cy.createApp('User App', 'This app is used to test user creation')
|
|
|
|
})
|
|
|
|
|
|
|
|
// https://on.cypress.io/interacting-with-elements
|
|
|
|
it('should create a user', () => {
|
2020-09-03 13:02:15 +02:00
|
|
|
cy.createUser('bbuser', 'test', 'POWER_USER')
|
2020-06-11 12:04:31 +02:00
|
|
|
|
|
|
|
// Check to make sure user was created!
|
2020-08-05 16:18:28 +02:00
|
|
|
cy.get("input[disabled]").should('have.value', 'bbuser')
|
2020-06-11 12:04:31 +02:00
|
|
|
})
|
|
|
|
})
|