From 625be790efb0b238e3f9e6dd0e0fa8af205555f1 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Tue, 27 Jan 2026 10:32:17 -0800 Subject: [PATCH] Fix hardcoded password in fixture --- libs/playwright-helpers/src/fixtures/auth.fixture.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/playwright-helpers/src/fixtures/auth.fixture.ts b/libs/playwright-helpers/src/fixtures/auth.fixture.ts index e10cdd7dfd0..a697077a06c 100644 --- a/libs/playwright-helpers/src/fixtures/auth.fixture.ts +++ b/libs/playwright-helpers/src/fixtures/auth.fixture.ts @@ -177,7 +177,7 @@ export class AuthFixture { await page.getByRole("textbox", { name: "Email address (required)" }).press("Enter"); await page .getByRole("textbox", { name: "Master password (required)" }) - .fill(scene.mangle("asdfasdfasdf")); + .fill(scene.mangle(password)); await page.getByRole("button", { name: "Log in with master password" }).click(); await page.getByRole("button", { name: "Add it later" }).click(); await page.getByRole("link", { name: "Skip to web app" }).click();