style: fix prettier

This commit is contained in:
lenhanphung
2025-10-09 15:00:30 +07:00
committed by Benoit TELLIER
parent 8160ed459a
commit 4d346751bf
2 changed files with 16 additions and 13 deletions
@@ -42,11 +42,11 @@ describe("EventUpdateModal Timezone Handling", () => {
// GIVEN user timezone is UTC+2
// WHEN the user edits an event at 2PM UTC+7 (Asia/Bangkok)
// THEN the update modal prompts him date with 2PM UTC+7
// Create event at 2PM UTC+7 (Asia/Bangkok)
// 2PM UTC+7 = 14:00 in Bangkok = 07:00 UTC
const eventDateUTC = new Date("2025-01-15T07:00:00.000Z");
const eventData = {
uid: "test-event-1",
title: "Timezone Event",
@@ -95,7 +95,7 @@ describe("EventUpdateModal Timezone Handling", () => {
const startInput = screen.getByLabelText("Start");
expect(startInput).toBeInTheDocument();
expect(startInput).toHaveAttribute("type", "datetime-local");
// The value should be formatted as 2025-01-15T14:00 (2PM in Bangkok time)
// EventUpdateModal uses formatDateTimeInTimezone which formats in event's original timezone
expect(startInput).toHaveValue("2025-01-15T14:00");
@@ -104,7 +104,7 @@ describe("EventUpdateModal Timezone Handling", () => {
it("preserves original timezone when editing event fields", async () => {
const eventDateUTC = new Date("2025-01-15T07:00:00.000Z");
const eventData = {
uid: "test-event-2",
title: "Original Event",
@@ -151,4 +151,3 @@ describe("EventUpdateModal Timezone Handling", () => {
expect(titleInput).toHaveValue("Updated Event");
});
});