Skip to content

Commit

Permalink
Try temp e2e test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mamaduka committed Sep 26, 2023
1 parent 4d14f40 commit 08ce95e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/e2e-tests/specs/editor/various/datepicker.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ async function getPublishingDate() {
);
}

describe.each( [ [ 'UTC-10' ], [ 'UTC' ], [ 'UTC+10' ] ] )(
// @todo: Change `UTC+1` back to `UTC` once the core regressions is resolved.
// See: https://github.com/WordPress/gutenberg/pull/54806#issuecomment-1734840171.
describe.each( [ [ 'UTC-10' ], [ 'UTC+1' ], [ 'UTC+10' ] ] )(
`Datepicker %s`,
( timezone ) => {
let oldTimezone;
Expand Down
4 changes: 3 additions & 1 deletion packages/e2e-tests/specs/editor/various/scheduling.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ describe( 'Scheduling', () => {
} );
};

describe.each( [ [ 'UTC-10' ], [ 'UTC' ], [ 'UTC+10' ] ] )(
// @todo: Change `UTC+1` back to `UTC` once the core regressions is resolved.
// See: https://github.com/WordPress/gutenberg/pull/54806#issuecomment-1734840171.
describe.each( [ [ 'UTC-10' ], [ 'UTC+1' ], [ 'UTC+10' ] ] )(
`Timezone %s`,
( timezone ) => {
let oldTimezone;
Expand Down

0 comments on commit 08ce95e

Please sign in to comment.