diff --git a/tests/wdio/test/specs/good-login.ts b/tests/wdio/test/specs/good-login.ts index 6e23eeec1..9d561b25d 100644 --- a/tests/wdio/test/specs/good-login.ts +++ b/tests/wdio/test/specs/good-login.ts @@ -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");