@wordpress/e2e-tests 6.3.1 → 6.3.3
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": "6.3.
|
3
|
+
"version": "6.3.3",
|
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,10 +23,10 @@
|
|
23
23
|
"node": ">=14"
|
24
24
|
},
|
25
25
|
"dependencies": {
|
26
|
-
"@wordpress/e2e-test-utils": "^9.3.
|
26
|
+
"@wordpress/e2e-test-utils": "^9.3.2",
|
27
27
|
"@wordpress/jest-console": "^6.9.1",
|
28
28
|
"@wordpress/jest-puppeteer-axe": "^5.9.1",
|
29
|
-
"@wordpress/scripts": "^25.3.
|
29
|
+
"@wordpress/scripts": "^25.3.3",
|
30
30
|
"@wordpress/url": "^3.27.1",
|
31
31
|
"chalk": "^4.0.0",
|
32
32
|
"expect-puppeteer": "^4.4.0",
|
@@ -46,5 +46,5 @@
|
|
46
46
|
"publishConfig": {
|
47
47
|
"access": "public"
|
48
48
|
},
|
49
|
-
"gitHead": "
|
49
|
+
"gitHead": "1bf01c01a8238ce3a681ad1e517f86033818b78d"
|
50
50
|
}
|
@@ -84,7 +84,11 @@ describe( 'Site Editor Performance', () => {
|
|
84
84
|
new URL( document.location ).searchParams.get( 'post' )
|
85
85
|
);
|
86
86
|
|
87
|
-
await visitSiteEditor( {
|
87
|
+
await visitSiteEditor( {
|
88
|
+
postId: id,
|
89
|
+
postType: 'page',
|
90
|
+
path: '/navigation/single',
|
91
|
+
} );
|
88
92
|
|
89
93
|
let i = 3;
|
90
94
|
|
@@ -265,6 +265,7 @@ describe( 'Multi-entity save flow', () => {
|
|
265
265
|
await visitSiteEditor( {
|
266
266
|
postId: 'emptytheme//index',
|
267
267
|
postType: 'wp_template',
|
268
|
+
path: '/templates/single',
|
268
269
|
} );
|
269
270
|
|
270
271
|
await enterEditMode();
|
@@ -304,6 +305,7 @@ describe( 'Multi-entity save flow', () => {
|
|
304
305
|
await visitSiteEditor( {
|
305
306
|
postId: 'emptytheme//index',
|
306
307
|
postType: 'wp_template',
|
308
|
+
path: '/templates/single',
|
307
309
|
} );
|
308
310
|
|
309
311
|
await enterEditMode();
|