From 3fe5ad4b3dbd7879630443c63acc7f1e69302a0f Mon Sep 17 00:00:00 2001 From: Karsten Hassel Date: Thu, 9 Nov 2023 22:57:15 +0100 Subject: [PATCH] remove failing unit test (#3265) see https://github.com/MichMich/MagicMirror/issues/3254#issuecomment-1800120812 --- CHANGELOG.md | 2 +- tests/unit/modules/default/utils_spec.js | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0af44ec6..8937e011 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ _This release is scheduled to be released on 2024-01-01._ - Removed Codecov workflow (not working anymore, other workflow required) (#3107) - Removed titleReplace from calendar, replaced + extended by customEvents (backward compatibility included) +- Removed failing unit test (#3254) ### Updated @@ -32,7 +33,6 @@ _This release is scheduled to be released on 2024-01-01._ - Fix newsfeed module for feeds using "a10:updated" tag (#3238) - Fix issue template (#3167) - Fix #3256 filter out bad results from rrule.between -- Fix for failing unit test (#3254) - Fix calendar events sometimes not respecting deleted events (#3250) ## [2.25.0] - 2023-10-01 diff --git a/tests/unit/modules/default/utils_spec.js b/tests/unit/modules/default/utils_spec.js index 1d1a6185..3430874c 100644 --- a/tests/unit/modules/default/utils_spec.js +++ b/tests/unit/modules/default/utils_spec.js @@ -150,17 +150,5 @@ describe("Default modules utils tests", () => { ) ).toBe("1:13"); }); - - it("should convert correctly into another timezone", () => { - expect( - formatTime( - { - timeFormat: 24, - timezone: "America/Toronto" - }, - time - ) - ).toBe("09:13"); - }); }); });