@wordpress/e2e-tests 4.9.2 → 5.0.0

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.
Files changed (24) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/README.md +1 -1
  3. package/assets/large-post.html +364 -182
  4. package/package.json +8 -8
  5. package/specs/editor/blocks/__snapshots__/navigation.test.js.snap +2 -2
  6. package/specs/editor/blocks/__snapshots__/quote.test.js.snap +5 -1
  7. package/specs/editor/blocks/navigation.test.js +394 -154
  8. package/specs/editor/blocks/quote.test.js +4 -1
  9. package/specs/editor/plugins/__snapshots__/cpt-locking.test.js.snap +2 -2
  10. package/specs/editor/various/__snapshots__/block-grouping.test.js.snap +5 -5
  11. package/specs/editor/various/__snapshots__/block-hierarchy-navigation.test.js.snap +1 -1
  12. package/specs/editor/various/__snapshots__/draggable-block.test.js.snap +22 -2
  13. package/specs/editor/various/__snapshots__/inserting-blocks.test.js.snap +1 -1
  14. package/specs/editor/various/__snapshots__/keep-styles-on-block-transforms.test.js.snap +1 -1
  15. package/specs/editor/various/__snapshots__/multi-block-selection.test.js.snap +9 -5
  16. package/specs/editor/various/block-grouping.test.js +2 -2
  17. package/specs/editor/various/draggable-block.test.js +83 -14
  18. package/specs/editor/various/multi-block-selection.test.js +28 -5
  19. package/specs/editor/various/post-visibility.test.js +2 -4
  20. package/specs/editor/various/scheduling.test.js +2 -6
  21. package/specs/editor/various/switch-to-draft.test.js +2 -4
  22. package/specs/performance/post-editor.test.js +3 -3
  23. package/specs/site-editor/global-styles-sidebar.test.js +2 -1
  24. package/specs/editor/plugins/wp-editor-meta-box.test.js +0 -58
package/CHANGELOG.md CHANGED
@@ -2,11 +2,17 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 5.0.0 (2022-08-24)
6
+
7
+ ### Breaking Change
8
+
9
+ - Increase the minimum Node.js version to 14 ([#43141](https://github.com/WordPress/gutenberg/pull/43141)).
10
+
5
11
  ## 4.0.0 (2022-04-08)
6
12
 
7
13
  ### Breaking Changes
8
14
 
9
- - There's currently an ongoing [project](https://github.com/WordPress/gutenberg/issues/38851) to migrate E2E tests to Playwright instead. This package is deprecated and will only accept bug fixes until fully migrated.
15
+ - There's currently an ongoing [project](https://github.com/WordPress/gutenberg/issues/38851) to migrate E2E tests to Playwright instead. This package is deprecated and will only accept bug fixes until fully migrated.
10
16
 
11
17
  ## 3.0.0 (2022-01-27)
12
18
 
package/README.md CHANGED
@@ -80,7 +80,7 @@ Debugging in a Chrome browser can be replaced with `vscode`'s debugger by adding
80
80
 
81
81
  This will run jest, targetting the spec file currently open in the editor. `vscode`'s debugger can now be used to add breakpoints and inspect tests as you would in Chrome DevTools.
82
82
 
83
- **Note**: This package requires Node.js 12.0.0 or later. It is not compatible with older versions.
83
+ **Note**: This package requires Node.js 14.0.0 or later. It is not compatible with older versions.
84
84
 
85
85
  ## Contributing to this package
86
86