@wordpress/e2e-tests 6.3.6 → 6.3.8

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.6",
3
+ "version": "6.3.8",
4
4
  "description": "End-To-End (E2E) tests for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -26,7 +26,7 @@
26
26
  "@wordpress/e2e-test-utils": "^9.3.3",
27
27
  "@wordpress/jest-console": "^6.9.1",
28
28
  "@wordpress/jest-puppeteer-axe": "^5.9.1",
29
- "@wordpress/scripts": "^25.3.4",
29
+ "@wordpress/scripts": "^25.3.5",
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": "8ce158f9e03a25797be5a6f16edd7509d62e90e4"
49
+ "gitHead": "e086b2b595618a5f4c9491119695be3e074d736b"
50
50
  }
@@ -75,11 +75,13 @@ describe( 'Settings sidebar', () => {
75
75
 
76
76
  expect( templateCardBeforeNavigation ).toMatchObject( {
77
77
  title: 'Index',
78
- description: 'Displays posts.',
78
+ description:
79
+ 'Used as a fallback template for all pages when a more specific template is not defined.',
79
80
  } );
80
81
  expect( templateCardAfterNavigation ).toMatchObject( {
81
82
  title: 'Singular',
82
- description: 'Displays a single post or page.',
83
+ description:
84
+ 'Displays any single entry, such as a post or a page. This template will serve as a fallback when a more specific template (e.g., Single Post, Page, or Attachment) cannot be found.',
83
85
  } );
84
86
  } );
85
87
  } );