Fix formatting

This commit is contained in:
Jeremy Nicholl 2022-02-03 15:19:57 -05:00
parent 164b38f0cd
commit 84e95f11cb

View File

@ -143,7 +143,7 @@ export const testNotMergeEmptyLinesFormat = tc => {
*/ */
export const testPreserveAttributesThroughDelete = tc => { export const testPreserveAttributesThroughDelete = tc => {
const ydoc = new Y.Doc() const ydoc = new Y.Doc()
const testText = ydoc.getText('test'); const testText = ydoc.getText('test')
testText.applyDelta([ testText.applyDelta([
{ insert: 'Text' }, { insert: 'Text' },
{ insert: '\n', attributes: { title: true } }, { insert: '\n', attributes: { title: true } },
@ -152,11 +152,11 @@ export const testPreserveAttributesThroughDelete = tc => {
testText.applyDelta([ testText.applyDelta([
{ retain: 4 }, { retain: 4 },
{ delete: 1 }, { delete: 1 },
{ retain: 1, attributes: { title: true } }, { retain: 1, attributes: { title: true } }
]) ])
t.compare(testText.toDelta(), [ t.compare(testText.toDelta(), [
{ insert: 'Text' }, { insert: 'Text' },
{ insert: '\n', attributes: { title: true } }, { insert: '\n', attributes: { title: true } }
]) ])
} }