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); },