From 4de3c004a8ef905a09ee96247fbd2e71091f8fac Mon Sep 17 00:00:00 2001 From: Kevin Jahns Date: Mon, 11 Jul 2022 18:42:29 +0200 Subject: [PATCH] remove todo comment --- tests/y-array.tests.js | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/y-array.tests.js b/tests/y-array.tests.js index f7066505..e8cb644e 100644 --- a/tests/y-array.tests.js +++ b/tests/y-array.tests.js @@ -519,7 +519,6 @@ export const testMoveSingleItemRemovesPrev = tc => { const ydoc = new Y.Doc() const yarray = ydoc.getArray() yarray.insert(0, [1, 2, 3]) - // @todo should be old-position to new-position. so that below move matches yarray.move(0, 3) t.compareArrays(yarray.toArray(), [2, 3, 1]) yarray.move(2, 0)