File tree Expand file tree Collapse file tree 2 files changed +1
-16
lines changed
Expand file tree Collapse file tree 2 files changed +1
-16
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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" ) ;
You can’t perform that action at this time.
0 commit comments