You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
expect(kit.toHtml()).toBe('<p>abcdefgh</p><blockquote data-attr=\'{"author":"Quasimodo","source":"Journal of Hunchbacks"}\'>ijklmnopqrstuvwxyz</blockquote>');
185
+
expect(kit.toHtml()).toBe(
186
+
'<p>abcdefgh</p><blockquote data-attr=\'{"author":"Quasimodo","source":"Journal of Hunchbacks"}\'>ijklmnopqrstuvwxyz</blockquote>',
187
+
);
197
188
kit.et.marker({
198
189
action: 'upd',
199
190
target: ['data',0],
200
191
ops: [
201
-
['merge','',{
202
-
author: 'Pierre Gringoire',
203
-
source: 'Journal of Hunchbacks',
204
-
}],
192
+
[
193
+
'merge',
194
+
'',
195
+
{
196
+
author: 'Pierre Gringoire',
197
+
source: 'Journal of Hunchbacks',
198
+
},
199
+
],
205
200
],
206
201
});
207
-
expect(kit.toHtml()).toBe('<p>abcdefgh</p><blockquote data-attr=\'{"author":"Pierre Gringoire","source":"Journal of Hunchbacks"}\'>ijklmnopqrstuvwxyz</blockquote>');
202
+
expect(kit.toHtml()).toBe(
203
+
'<p>abcdefgh</p><blockquote data-attr=\'{"author":"Pierre Gringoire","source":"Journal of Hunchbacks"}\'>ijklmnopqrstuvwxyz</blockquote>',
0 commit comments