From bb714a4e8a7b5812b9f69a7abfd833bec2a0e8d7 Mon Sep 17 00:00:00 2001 From: Lova ANDRIARIMALALA <43842786+Xpirix@users.noreply.github.com> Date: Wed, 29 May 2024 11:21:35 +0300 Subject: [PATCH] Set DEBUG to True by default in env template --- dockerize/.env.template | 2 +- playwright/ci-test/tests/00-authentication.setup.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerize/.env.template b/dockerize/.env.template index 5175f3ff..f53b40d1 100644 --- a/dockerize/.env.template +++ b/dockerize/.env.template @@ -9,7 +9,7 @@ DATABASE_HOST=db # Django settings DJANGO_SETTINGS_MODULE=settings_docker -DEBUG=False +DEBUG=True # Docker volumes QGISPLUGINS_STATIC_VOLUME=static-data diff --git a/playwright/ci-test/tests/00-authentication.setup.ts b/playwright/ci-test/tests/00-authentication.setup.ts index 2d204e81..a2468c33 100644 --- a/playwright/ci-test/tests/00-authentication.setup.ts +++ b/playwright/ci-test/tests/00-authentication.setup.ts @@ -14,7 +14,7 @@ test('authentication-setup', async ({ page }) => { await expect(page.getByRole('link', { name: 'Login' })).toBeVisible(); - await page.getByRole('link', { name: 'Login' }).click({ force: true }); + await page.getByRole('link', { name: 'Login' }).click(); await page.waitForURL('**/accounts/login/');