@wordpress/e2e-tests 7.13.1 → 7.13.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wordpress/e2e-tests",
|
3
|
-
"version": "7.13.
|
3
|
+
"version": "7.13.2",
|
4
4
|
"description": "End-To-End (E2E) tests for WordPress.",
|
5
5
|
"author": "The WordPress Contributors",
|
6
6
|
"license": "GPL-2.0-or-later",
|
@@ -23,11 +23,11 @@
|
|
23
23
|
"node": ">=14"
|
24
24
|
},
|
25
25
|
"dependencies": {
|
26
|
-
"@wordpress/e2e-test-utils": "^10.13.
|
27
|
-
"@wordpress/jest-console": "^7.13.
|
28
|
-
"@wordpress/jest-puppeteer-axe": "^6.13.
|
29
|
-
"@wordpress/scripts": "^26.13.
|
30
|
-
"@wordpress/url": "^3.43.
|
26
|
+
"@wordpress/e2e-test-utils": "^10.13.2",
|
27
|
+
"@wordpress/jest-console": "^7.13.2",
|
28
|
+
"@wordpress/jest-puppeteer-axe": "^6.13.2",
|
29
|
+
"@wordpress/scripts": "^26.13.2",
|
30
|
+
"@wordpress/url": "^3.43.2",
|
31
31
|
"chalk": "^4.0.0",
|
32
32
|
"expect-puppeteer": "^4.4.0",
|
33
33
|
"filenamify": "^4.2.0",
|
@@ -45,5 +45,5 @@
|
|
45
45
|
"publishConfig": {
|
46
46
|
"access": "public"
|
47
47
|
},
|
48
|
-
"gitHead": "
|
48
|
+
"gitHead": "5d2e3d07cc97af8090fc32c1e5d5013a2967e752"
|
49
49
|
}
|
@@ -61,7 +61,9 @@ async function getPublishingDate() {
|
|
61
61
|
);
|
62
62
|
}
|
63
63
|
|
64
|
-
|
64
|
+
// @todo: Change `UTC+1` back to `UTC` once the core regressions is resolved.
|
65
|
+
// See: https://github.com/WordPress/gutenberg/pull/54806#issuecomment-1734840171.
|
66
|
+
describe.each( [ [ 'UTC-10' ], [ 'UTC+1' ], [ 'UTC+10' ] ] )(
|
65
67
|
`Datepicker %s`,
|
66
68
|
( timezone ) => {
|
67
69
|
let oldTimezone;
|
@@ -209,7 +209,7 @@ describe( 'Pattern blocks', () => {
|
|
209
209
|
|
210
210
|
// Wait for creation to finish.
|
211
211
|
await page.waitForXPath(
|
212
|
-
'//*[contains(@class, "components-snackbar")]/*[contains(text(),"
|
212
|
+
'//*[contains(@class, "components-snackbar")]/*[contains(text(),"pattern created:")]'
|
213
213
|
);
|
214
214
|
|
215
215
|
await clearAllBlocks();
|
@@ -23,7 +23,9 @@ describe( 'Scheduling', () => {
|
|
23
23
|
} );
|
24
24
|
};
|
25
25
|
|
26
|
-
|
26
|
+
// @todo: Change `UTC+1` back to `UTC` once the core regressions is resolved.
|
27
|
+
// See: https://github.com/WordPress/gutenberg/pull/54806#issuecomment-1734840171.
|
28
|
+
describe.each( [ [ 'UTC-10' ], [ 'UTC+1' ], [ 'UTC+10' ] ] )(
|
27
29
|
`Timezone %s`,
|
28
30
|
( timezone ) => {
|
29
31
|
let oldTimezone;
|