budibase/packages/builder/cypress/integration/createUser.spec.js

18 lines
505 B
JavaScript

context('Create a User', () => {
before(() => {
cy.server()
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', () => {
cy.createUser('bbuser', 'test', 'ADMIN')
// Check to make sure user was created!
cy.get("input[disabled]").should('have.value', 'bbuser')
})
})