@wordpress/e2e-tests 2.5.0 → 2.5.1
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/README.md +2 -2
- package/config/flaky-tests-reporter.js +94 -0
- package/config/setup-test-framework.js +7 -0
- package/jest.config.js +11 -1
- package/package.json +6 -5
- package/plugins/iframed-block/block.json +16 -0
- package/plugins/iframed-block/editor.css +6 -0
- package/plugins/iframed-block/editor.js +18 -0
- package/plugins/iframed-block/jquery.test.js +7 -0
- package/plugins/iframed-block/script.js +7 -0
- package/plugins/iframed-block/style.css +9 -0
- package/plugins/iframed-block.php +46 -0
- package/specs/editor/plugins/__snapshots__/iframed-block.test.js.snap +7 -0
- package/specs/editor/plugins/align-hook.test.js +116 -105
- package/specs/editor/plugins/iframed-block.test.js +58 -0
- package/specs/editor/various/__snapshots__/copy-cut-paste-whole-blocks.test.js.snap +28 -0
- package/specs/editor/various/__snapshots__/rich-text.test.js.snap +15 -3
- package/specs/editor/various/block-grouping.test.js +2 -2
- package/specs/editor/various/copy-cut-paste-whole-blocks.test.js +92 -0
- package/specs/editor/various/embedding.test.js +1 -1
- package/specs/editor/various/inserting-blocks.test.js +23 -0
- package/specs/editor/various/rich-text.test.js +29 -1
- package/specs/editor/various/writing-flow.test.js +4 -2
- package/specs/experiments/__snapshots__/navigation-editor.test.js.snap +27 -33
- package/specs/experiments/blocks/__snapshots__/navigation.test.js.snap +29 -19
- package/specs/experiments/blocks/navigation.test.js +93 -17
- package/specs/experiments/fixtures/menu-items-request-fixture.json +84 -0
- package/specs/experiments/navigation-editor.test.js +332 -233
- package/specs/experiments/template-revert.test.js +1 -1
- package/specs/performance/site-editor.test.js +2 -17
- package/specs/widgets/customizing-widgets.test.js +94 -1
- package/specs/widgets/editing-widgets.test.js +6 -0
@@ -0,0 +1,84 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"title": "Home",
|
4
|
+
"url": "http://localhost:8889/",
|
5
|
+
"menu_order": 1
|
6
|
+
},
|
7
|
+
{
|
8
|
+
"title": "About",
|
9
|
+
"type": "post_type",
|
10
|
+
"object": "page",
|
11
|
+
"menu_order": 2
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"title": "Our team",
|
15
|
+
"type": "post_type",
|
16
|
+
"object": "page",
|
17
|
+
"menu_order": 3,
|
18
|
+
"parent": 1
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"title": "Shop",
|
22
|
+
"type": "post_type",
|
23
|
+
"object": "page",
|
24
|
+
"menu_order": 4
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"title": "Winter apparel",
|
28
|
+
"type": "post_type",
|
29
|
+
"object": "page",
|
30
|
+
"menu_order": 5,
|
31
|
+
"parent": 3
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"title": "Chunky socks",
|
35
|
+
"type": "post_type",
|
36
|
+
"object": "page",
|
37
|
+
"menu_order": 6,
|
38
|
+
"parent": 4
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"title": "Hideous hats",
|
42
|
+
"type": "post_type",
|
43
|
+
"object": "page",
|
44
|
+
"menu_order": 7,
|
45
|
+
"parent": 4
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"title": "Glorious gloves",
|
49
|
+
"type": "post_type",
|
50
|
+
"object": "page",
|
51
|
+
"menu_order": 8,
|
52
|
+
"parent": 4
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"title": "Jazzy Jumpers",
|
56
|
+
"type": "post_type",
|
57
|
+
"object": "page",
|
58
|
+
"menu_order": 9,
|
59
|
+
"parent": 4
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"title": "Shipping",
|
63
|
+
"type": "post_type",
|
64
|
+
"object": "page",
|
65
|
+
"menu_order": 10
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"title": "Contact Us",
|
69
|
+
"type": "post_type",
|
70
|
+
"object": "page",
|
71
|
+
"menu_order": 11
|
72
|
+
},
|
73
|
+
{
|
74
|
+
"title": "WordPress.org",
|
75
|
+
"url": "https://wordpress.org",
|
76
|
+
"menu_order": 12
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"title": "Google",
|
80
|
+
"url": "https://google.com",
|
81
|
+
"menu_order": 13,
|
82
|
+
"parent": 11
|
83
|
+
}
|
84
|
+
]
|