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

11 lines
200 B
JavaScript
Raw Normal View History

2022-01-20 04:19:02 +13:00
context("Create a User", () => {
before(() => {
cy.login()
})
it("should create a user", () => {
cy.createUser("bbuser@test.com")
cy.contains("bbuser").should("be.visible")
})
})