Skip to content

Commit 8881300

Browse files
Merge branch 'develop' into config
2 parents 3da8dba + c9eecdd commit 8881300

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ planned for 2026-01-01
1919

2020
- [core] refactor: replace `module-alias` dependency with internal alias resolver (#3893)
2121
- [check_config] refactor: improve error handling (#3927)
22+
- [calendar] test: remove "Recurring event per timezone" test (#3929)
2223

2324
### Fixed
2425

tests/e2e/modules/calendar_spec.js

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -119,22 +119,6 @@ describe("Calendar module", () => {
119119
});
120120
});
121121

122-
for (let i = -12; i < 12; i++) {
123-
describe("Recurring event per timezone", () => {
124-
beforeAll(async () => {
125-
Date.prototype.getTimezoneOffset = () => {
126-
return i * 60;
127-
};
128-
await helpers.startApplication("tests/configs/modules/calendar/recurring.js");
129-
await helpers.getDocument();
130-
});
131-
132-
it(`should contain text "Mar 25th" in timezone UTC ${-i}`, async () => {
133-
await expect(testTextContain(".calendar", "Mar 25th")).resolves.toBe(true);
134-
});
135-
});
136-
}
137-
138122
describe("Changed port", () => {
139123
beforeAll(async () => {
140124
await helpers.startApplication("tests/configs/modules/calendar/changed-port.js");

0 commit comments

Comments
 (0)