web/test: changed the name of one test to reflect it's 'good' status

This commit is contained in:
Ken Sternberg 2023-09-22 13:04:46 -07:00
parent d8d9890a41
commit 918463906b
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import UserLibraryPage from "../pageobjects/user-library.page.js";
import { expect } from "@wdio/globals";
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.login("ken@goauthentik.io", "eat10bugs");
await expect(UserLibraryPage.pageHeader).toHaveText("My applications");