2021-03-05 15:36:38 +01:00
|
|
|
context("Create a User", () => {
|
|
|
|
before(() => {
|
2021-04-15 19:29:11 +02:00
|
|
|
cy.login()
|
2021-03-05 15:36:38 +01:00
|
|
|
})
|
2020-06-11 12:04:31 +02:00
|
|
|
|
2021-03-05 15:36:38 +01:00
|
|
|
it("should create a user", () => {
|
2021-05-25 19:06:56 +02:00
|
|
|
cy.createUser("bbuser@test.com")
|
2021-03-05 15:36:38 +01:00
|
|
|
cy.contains("bbuser").should("be.visible")
|
|
|
|
})
|
2020-06-11 12:04:31 +02:00
|
|
|
})
|