We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 927a3e7 commit 77e4cdeCopy full SHA for 77e4cde
src/tests/frontend/specs/easysync.js
@@ -188,6 +188,11 @@ describe('easysync', function () {
188
['insert', 'a'],
189
['insert', 'c\n', 1],
190
], ['ac\n']);
191
+ runMutationTest(10, ['\n'], [
192
+ ['remove', 1, 1, '\n'],
193
+ ['insert', 'a\n', 1],
194
+ ['insert', 'c'],
195
+ ], ['a\n', 'c']); // TODO find out if c must have a newline because of unknown constraints
196
197
const poolOrArray = (attribs) => {
198
if (attribs.getAttrib) {
0 commit comments