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

12 lines
240 B
JavaScript
Raw Normal View History

context("Create a User", () => {
before(() => {
2021-04-16 05:29:11 +12:00
cy.login()
cy.createTestApp()
})
it("should create a user", () => {
cy.createUser("bbuser@test.com", "test", "ADMIN")
cy.contains("bbuser").should("be.visible")
})
})