From 4f9e890bdb1d74b27ffe66eed96553a1a823d0ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20L=C3=B3pez?= Date: Thu, 26 Oct 2023 13:02:53 -0700 Subject: [PATCH] Update apps/web/playwright/lib/fixtures.ts --- apps/web/playwright/lib/fixtures.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/playwright/lib/fixtures.ts b/apps/web/playwright/lib/fixtures.ts index b751a1d784..381156f368 100644 --- a/apps/web/playwright/lib/fixtures.ts +++ b/apps/web/playwright/lib/fixtures.ts @@ -90,7 +90,7 @@ export const test = base.extend({ await use(bookingPage); }, dayjs: async ({ timezoneId }, use) => { - // We default all dayjs calls to use Europe/London timezone + // We default all dayjs calls to use the browser configured timezone const dayjs = (...args: Parameters) => _dayjs(...args).tz(timezoneId); await use(dayjs); },