@wordpress/e2e-tests 7.11.1 → 7.12.1-next.5a1d1283.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.
@@ -1,231 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`RichText should apply active formatting for inline paste 1`] = `
4
- "<!-- wp:paragraph -->
5
- <p><strong>132</strong>3</p>
6
- <!-- /wp:paragraph -->"
7
- `;
8
-
9
- exports[`RichText should apply formatting when selection is collapsed 1`] = `
10
- "<!-- wp:paragraph -->
11
- <p>Some <strong>bold</strong>.</p>
12
- <!-- /wp:paragraph -->"
13
- `;
14
-
15
- exports[`RichText should apply formatting with primary shortcut 1`] = `
16
- "<!-- wp:paragraph -->
17
- <p><strong>test</strong></p>
18
- <!-- /wp:paragraph -->"
19
- `;
20
-
21
- exports[`RichText should apply multiple formats when selection is collapsed 1`] = `
22
- "<!-- wp:paragraph -->
23
- <p><strong><em>1</em></strong>.</p>
24
- <!-- /wp:paragraph -->"
25
- `;
26
-
27
- exports[`RichText should copy/paste heading 1`] = `
28
- "<!-- wp:heading -->
29
- <h2 class="wp-block-heading">Heading</h2>
30
- <!-- /wp:heading -->
31
-
32
- <!-- wp:heading -->
33
- <h2 class="wp-block-heading">Heading</h2>
34
- <!-- /wp:heading -->"
35
- `;
36
-
37
- exports[`RichText should handle Home and End keys 1`] = `
38
- "<!-- wp:paragraph -->
39
- <p>-<strong>12</strong>+</p>
40
- <!-- /wp:paragraph -->"
41
- `;
42
-
43
- exports[`RichText should handle change in tag name gracefully 1`] = `
44
- "<!-- wp:heading {"level":3} -->
45
- <h3 class="wp-block-heading"></h3>
46
- <!-- /wp:heading -->"
47
- `;
48
-
49
- exports[`RichText should keep internal selection after blur 1`] = `
50
- "<!-- wp:paragraph -->
51
- <p>1<strong>2</strong></p>
52
- <!-- /wp:paragraph -->"
53
- `;
54
-
55
- exports[`RichText should make bold after split and merge 1`] = `
56
- "<!-- wp:paragraph -->
57
- <p>1<strong>2</strong></p>
58
- <!-- /wp:paragraph -->"
59
- `;
60
-
61
- exports[`RichText should navigate arround emoji 1`] = `
62
- "<!-- wp:paragraph -->
63
- <p>1🍓</p>
64
- <!-- /wp:paragraph -->"
65
- `;
66
-
67
- exports[`RichText should navigate consecutive format boundaries 1`] = `
68
- "<!-- wp:paragraph -->
69
- <p><strong>1</strong><em>2</em></p>
70
- <!-- /wp:paragraph -->"
71
- `;
72
-
73
- exports[`RichText should navigate consecutive format boundaries 2`] = `
74
- "<!-- wp:paragraph -->
75
- <p><strong>1</strong>-<em>2</em></p>
76
- <!-- /wp:paragraph -->"
77
- `;
78
-
79
- exports[`RichText should not format text after code backtick 1`] = `
80
- "<!-- wp:paragraph -->
81
- <p>A <code>backtick</code> and more.</p>
82
- <!-- /wp:paragraph -->"
83
- `;
84
-
85
- exports[`RichText should not lose selection direction 1`] = `
86
- "<!-- wp:paragraph -->
87
- <p><strong>1</strong>2-3</p>
88
- <!-- /wp:paragraph -->"
89
- `;
90
-
91
- exports[`RichText should not split rich text on inline paste 1`] = `
92
- "<!-- wp:paragraph -->
93
- <p>123</p>
94
- <!-- /wp:paragraph -->"
95
- `;
96
-
97
- exports[`RichText should not split rich text on inline paste with formatting 1`] = `
98
- "<!-- wp:paragraph -->
99
- <p>a1<strong>2</strong>3b</p>
100
- <!-- /wp:paragraph -->"
101
- `;
102
-
103
- exports[`RichText should not undo backtick transform with backspace after selection change 1`] = `""`;
104
-
105
- exports[`RichText should not undo backtick transform with backspace after typing 1`] = `""`;
106
-
107
- exports[`RichText should only mutate text data on input 1`] = `
108
- "<!-- wp:paragraph -->
109
- <p>1<strong>2</strong>34</p>
110
- <!-- /wp:paragraph -->"
111
- `;
112
-
113
- exports[`RichText should paste list contents into paragraph 1`] = `
114
- "<!-- wp:list -->
115
- <ul><!-- wp:list-item -->
116
- <li>1<!-- wp:list -->
117
- <ul><!-- wp:list-item -->
118
- <li>2</li>
119
- <!-- /wp:list-item --></ul>
120
- <!-- /wp:list --></li>
121
- <!-- /wp:list-item --></ul>
122
- <!-- /wp:list -->
123
-
124
- <!-- wp:list -->
125
- <ul><!-- wp:list-item -->
126
- <li>1<!-- wp:list -->
127
- <ul><!-- wp:list-item -->
128
- <li>2</li>
129
- <!-- /wp:list-item --></ul>
130
- <!-- /wp:list --></li>
131
- <!-- /wp:list-item --></ul>
132
- <!-- /wp:list -->"
133
- `;
134
-
135
- exports[`RichText should paste paragraph contents into list 1`] = `
136
- "<!-- wp:paragraph -->
137
- <p>1<br>2</p>
138
- <!-- /wp:paragraph -->
139
-
140
- <!-- wp:list -->
141
- <ul><!-- wp:list-item -->
142
- <li>1</li>
143
- <!-- /wp:list-item -->
144
-
145
- <!-- wp:list-item -->
146
- <li>2</li>
147
- <!-- /wp:list-item --></ul>
148
- <!-- /wp:list -->"
149
- `;
150
-
151
- exports[`RichText should preserve internal formatting 1`] = `
152
- "<!-- wp:paragraph -->
153
- <p><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-cyan-bluish-gray-color">1</mark></p>
154
- <!-- /wp:paragraph -->"
155
- `;
156
-
157
- exports[`RichText should preserve internal formatting 2`] = `
158
- "<!-- wp:paragraph -->
159
- <p><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-cyan-bluish-gray-color">1</mark></p>
160
- <!-- /wp:paragraph -->
161
-
162
- <!-- wp:paragraph -->
163
- <p><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-cyan-bluish-gray-color">1</mark></p>
164
- <!-- /wp:paragraph -->"
165
- `;
166
-
167
- exports[`RichText should return focus when pressing formatting button 1`] = `
168
- "<!-- wp:paragraph -->
169
- <p>Some <strong>bold</strong>.</p>
170
- <!-- /wp:paragraph -->"
171
- `;
172
-
173
- exports[`RichText should run input rules after composition end 1`] = `
174
- "<!-- wp:paragraph -->
175
- <p><code>a</code></p>
176
- <!-- /wp:paragraph -->"
177
- `;
178
-
179
- exports[`RichText should split rich text on paste 1`] = `
180
- "<!-- wp:paragraph -->
181
- <p>a</p>
182
- <!-- /wp:paragraph -->
183
-
184
- <!-- wp:paragraph -->
185
- <p>1</p>
186
- <!-- /wp:paragraph -->
187
-
188
- <!-- wp:paragraph -->
189
- <p>2</p>
190
- <!-- /wp:paragraph -->
191
-
192
- <!-- wp:paragraph -->
193
- <p>b</p>
194
- <!-- /wp:paragraph -->"
195
- `;
196
-
197
- exports[`RichText should transform backtick to code 1`] = `
198
- "<!-- wp:paragraph -->
199
- <p>A <code>backtick</code></p>
200
- <!-- /wp:paragraph -->"
201
- `;
202
-
203
- exports[`RichText should transform backtick to code 2`] = `
204
- "<!-- wp:paragraph -->
205
- <p>A \`backtick\`</p>
206
- <!-- /wp:paragraph -->"
207
- `;
208
-
209
- exports[`RichText should transform when typing backtick over selection 1`] = `
210
- "<!-- wp:paragraph -->
211
- <p>A <code>selection</code> test.</p>
212
- <!-- /wp:paragraph -->"
213
- `;
214
-
215
- exports[`RichText should transform when typing backtick over selection 2`] = `
216
- "<!-- wp:paragraph -->
217
- <p>A \`selection\` test.</p>
218
- <!-- /wp:paragraph -->"
219
- `;
220
-
221
- exports[`RichText should undo backtick transform with backspace 1`] = `
222
- "<!-- wp:paragraph -->
223
- <p>\`a\`</p>
224
- <!-- /wp:paragraph -->"
225
- `;
226
-
227
- exports[`RichText should update internal selection after fresh focus 1`] = `
228
- "<!-- wp:paragraph -->
229
- <p>1<strong>2</strong></p>
230
- <!-- /wp:paragraph -->"
231
- `;