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 0b382a7 commit e8814a9Copy full SHA for e8814a9
src/node/easysync_tests.js
@@ -232,6 +232,11 @@ function runTests() {
232
['insert', "a"],
233
['insert',"c\n", 1]
234
], ["ac\n"]);
235
+ runMutationTest(10, ["\n"], [
236
+ ['remove', 1, 1, "\n"],
237
+ ['insert', "a\n", 1],
238
+ ['insert',"c"]
239
+ ], ["a\n","c"]); //TODO find out if c must have a newline because of unknown constraints
240
241
function poolOrArray(attribs) {
242
if (attribs.getAttrib) {
0 commit comments