From 5129e8e343c9ad0f32a028bb0782f1df184feeed Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 15 Mar 2026 23:11:08 +0100 Subject: [PATCH] Minor cleaning --- playwright.config.ts | 2 +- tests/e2e/web/specs/signUp.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 4d0416a5..ec94cf50 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -28,7 +28,7 @@ function getSupabaseEnv() { const supabaseEnv = getSupabaseEnv() // Inject into process.env so Playwright and your app code can read them -// Object.assign(process.env, supabaseEnv) +Object.assign(process.env, supabaseEnv) export default defineConfig({ testDir: './tests/e2e', diff --git a/tests/e2e/web/specs/signUp.spec.ts b/tests/e2e/web/specs/signUp.spec.ts index a266bb17..53562129 100644 --- a/tests/e2e/web/specs/signUp.spec.ts +++ b/tests/e2e/web/specs/signUp.spec.ts @@ -28,4 +28,4 @@ test.describe('when an error occurs', () => { await app.signUp.verifyUsernameError() await expect(app.signUp.nextButtonLocator).toBeDisabled() }) -}) \ No newline at end of file +})