@wordpress/e2e-tests 7.6.8 → 7.6.9
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.6.
|
3
|
+
"version": "7.6.9",
|
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,7 +23,7 @@
|
|
23
23
|
"node": ">=14"
|
24
24
|
},
|
25
25
|
"dependencies": {
|
26
|
-
"@wordpress/e2e-test-utils": "^10.6.
|
26
|
+
"@wordpress/e2e-test-utils": "^10.6.4",
|
27
27
|
"@wordpress/jest-console": "^7.6.1",
|
28
28
|
"@wordpress/jest-puppeteer-axe": "^6.6.1",
|
29
29
|
"@wordpress/scripts": "^26.6.3",
|
@@ -45,5 +45,5 @@
|
|
45
45
|
"publishConfig": {
|
46
46
|
"access": "public"
|
47
47
|
},
|
48
|
-
"gitHead": "
|
48
|
+
"gitHead": "cedb8caa943db47c16bdb4fa8880d506ce938fab"
|
49
49
|
}
|
@@ -23,8 +23,6 @@ const reusableBlockNameInputSelector =
|
|
23
23
|
'.reusable-blocks-menu-items__convert-modal .components-text-control__input';
|
24
24
|
const reusableBlockInspectorNameInputSelector =
|
25
25
|
'.block-editor-block-inspector .components-text-control__input';
|
26
|
-
const syncToggleSelector =
|
27
|
-
'.reusable-blocks-menu-items__convert-modal .components-form-toggle__input';
|
28
26
|
const syncToggleSelectorChecked =
|
29
27
|
'.reusable-blocks-menu-items__convert-modal .components-form-toggle.is-checked';
|
30
28
|
|
@@ -205,8 +203,6 @@ describe( 'Reusable blocks', () => {
|
|
205
203
|
);
|
206
204
|
await nameInput.click();
|
207
205
|
await page.keyboard.type( 'Multi-selection reusable block' );
|
208
|
-
const syncToggle = await page.waitForSelector( syncToggleSelector );
|
209
|
-
syncToggle.click();
|
210
206
|
await page.waitForSelector( syncToggleSelectorChecked );
|
211
207
|
await page.keyboard.press( 'Enter' );
|
212
208
|
|
@@ -389,8 +385,6 @@ describe( 'Reusable blocks', () => {
|
|
389
385
|
);
|
390
386
|
await nameInput.click();
|
391
387
|
await page.keyboard.type( 'Block with styles' );
|
392
|
-
const syncToggle = await page.waitForSelector( syncToggleSelector );
|
393
|
-
syncToggle.click();
|
394
388
|
await page.waitForSelector( syncToggleSelectorChecked );
|
395
389
|
await page.keyboard.press( 'Enter' );
|
396
390
|
const reusableBlock = await canvas().waitForSelector(
|