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 89be875 commit 8af7834Copy full SHA for 8af7834
src/node/easysync_tests.js
@@ -227,6 +227,11 @@ const runTests = () => {
227
['insert', 'a'],
228
['insert', 'c\n', 1],
229
], ['ac\n']);
230
+ runMutationTest(10, ['\n'], [
231
+ ['remove', 1, 1, '\n'],
232
+ ['insert', 'a\n', 1],
233
+ ['insert', 'c'],
234
+ ], ['a\n', 'c']); // TODO find out if c must have a newline because of unknown constraints
235
236
const poolOrArray = (attribs) => {
237
if (attribs.getAttrib) {
0 commit comments