remove failing unit test (#3265)

see
https://github.com/MichMich/MagicMirror/issues/3254#issuecomment-1800120812
This commit is contained in:
Karsten Hassel 2023-11-09 22:57:15 +01:00 committed by GitHub
parent b300191609
commit 3fe5ad4b3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 13 deletions

View file

@ -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

View file

@ -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");
});
});
});