1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00
budibase/packages/builder/cypress/integration/createUser.spec.js

18 lines
521 B
JavaScript
Raw Normal View History

2020-06-11 23:20:13 +12:00
context('Create a User', () => {
before(() => {
cy.server()
cy.visit(`localhost:${Cypress.env("PORT")}/_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-12-05 03:46:21 +13:00
cy.createUser("bbuser@test.com", "test", "ADMIN")
// // Check to make sure user was created!
2020-11-28 02:17:31 +13:00
cy.contains("bbuser").should('be.visible')
})
})