@wordpress/e2e-tests 9.4.1-next.v.0 → 9.4.1-next.v.20260206T143.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/e2e-tests",
3
- "version": "9.4.1-next.v.0+5aba098fc",
3
+ "version": "9.4.1-next.v.20260206T143.0+81f8de885",
4
4
  "description": "Test plugins and mu-plugins for E2E tests in WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -24,8 +24,8 @@
24
24
  "npm": ">=8.19.2"
25
25
  },
26
26
  "dependencies": {
27
- "@wordpress/interactivity": "^6.39.1-next.v.0+5aba098fc",
28
- "@wordpress/interactivity-router": "^2.39.1-next.v.0+5aba098fc"
27
+ "@wordpress/interactivity": "^6.39.1-next.v.20260206T143.0+81f8de885",
28
+ "@wordpress/interactivity-router": "^2.39.1-next.v.20260206T143.0+81f8de885"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "jest": ">=29",
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "d730f9e00f5462d1b9d2660632850f5f43ccff44"
39
+ "gitHead": "6ae3fbb907e6c309ff6a0685e5e5ff0c2ee23b15"
40
40
  }
@@ -31,6 +31,7 @@ add_action( 'add_meta_boxes', 'gutenberg_test_meta_box_add_meta_box' );
31
31
 
32
32
  /**
33
33
  * Print excerpt in <meta> tag in wp_head
34
+ * @global WP_Post $post Global post object.
34
35
  */
35
36
  function gutenberg_test_meta_box_render_head() {
36
37
  global $post;
package/plugins/rtl.php CHANGED
@@ -11,6 +11,8 @@
11
11
 
12
12
  /**
13
13
  * Set the locale's and styles' text direction to RTL.
14
+ * @global WP_Locale $wp_locale WordPress Locale object.
15
+ * @global WP_Styles $wp_styles WordPress Styles object.
14
16
  */
15
17
  function gutenberg_test_plugin_activate_rtl_set_direction() {
16
18
  global $wp_locale, $wp_styles;