web/test: changed the name of one test to reflect it's 'good' status
This commit is contained in:
parent
d8d9890a41
commit
918463906b
|
@ -3,7 +3,7 @@ import UserLibraryPage from "../pageobjects/user-library.page.js";
|
||||||
import { expect } from "@wdio/globals";
|
import { expect } from "@wdio/globals";
|
||||||
|
|
||||||
describe("Log into Authentik", () => {
|
describe("Log into Authentik", () => {
|
||||||
it("should login with valid credentials", async () => {
|
it("should login with valid credentials and reach the UserLibrary", async () => {
|
||||||
await LoginPage.open();
|
await LoginPage.open();
|
||||||
await LoginPage.login("ken@goauthentik.io", "eat10bugs");
|
await LoginPage.login("ken@goauthentik.io", "eat10bugs");
|
||||||
await expect(UserLibraryPage.pageHeader).toHaveText("My applications");
|
await expect(UserLibraryPage.pageHeader).toHaveText("My applications");
|
||||||
|
|
Reference in New Issue