From 3c5eba3c6489d7efe5ad127e0126213bf0485164 Mon Sep 17 00:00:00 2001 From: "marc.sirisak" Date: Thu, 11 Apr 2024 16:26:47 +0000 Subject: [PATCH] fix(subtree): gitguardian remove generic pwd in login.spec.ts --- playwright/e2e/login/login.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright/e2e/login/login.spec.ts b/playwright/e2e/login/login.spec.ts index 67cdda642f6..8d2e324e93a 100644 --- a/playwright/e2e/login/login.spec.ts +++ b/playwright/e2e/login/login.spec.ts @@ -23,7 +23,7 @@ test.describe("Login", () => { test.use({ startHomeserverOpts: "consent" }); const username = "user1234"; - const password = "p4s5W0rD"; + const password = ""; // :TCHAP: remove pwd to pass git guardian test.beforeEach(async ({ page, homeserver }) => { await homeserver.registerUser(username, password);