From 918463906b2d5ab9a6b868bfe5708f549d5de6ac Mon Sep 17 00:00:00 2001 From: Ken Sternberg Date: Fri, 22 Sep 2023 13:04:46 -0700 Subject: [PATCH] web/test: changed the name of one test to reflect it's 'good' status --- tests/wdio/test/specs/good-login.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");