Fix lint errors

This commit is contained in:
Dominik Henneke 2023-04-03 13:30:36 +02:00
parent cf202547c9
commit 2884055ba5

View File

@ -647,7 +647,7 @@ export const testSpecialDeletionCase = tc => {
/**
* Deleted entries in a map should be restored on undo.
*
*
* @see https://github.com/yjs/yjs/issues/500
* @param {t.TestCase} tc
*/
@ -667,20 +667,19 @@ export const testUndoDeleteInMap = (tc) => {
undoManager.undo()
t.compare(map0.toJSON(), {})
undoManager.undo()
t.compare(map0.toJSON(), { a: 'c' })
undoManager.undo()
t.compare(map0.toJSON(), {})
undoManager.undo()
t.compare(map0.toJSON(), { a: 'b' })
undoManager.undo()
t.compare(map0.toJSON(), {})
undoManager.undo()
t.compare(map0.toJSON(), { a: 'a' })
};
}