Skip to content

Commit 9f4e11d

Browse files
committed
Fix lint
1 parent 9d371c3 commit 9f4e11d

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

packages/model/src/entities/EditorDocument/EditorDocument.spec.ts

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,10 @@ describe('EditorDocument', () => {
8383

8484
const newIdentifier = 'new-document-id';
8585

86-
doc.initialize({ identifier: newIdentifier, blocks: [] });
86+
doc.initialize({
87+
identifier: newIdentifier,
88+
blocks: [],
89+
});
8790

8891
expect(doc.identifier).toBe(newIdentifier);
8992
});
@@ -93,9 +96,15 @@ describe('EditorDocument', () => {
9396
identifier: 'document',
9497
});
9598

96-
const properties = { readOnly: true, customProp: 'value' };
99+
const properties = {
100+
readOnly: true,
101+
customProp: 'value',
102+
};
97103

98-
doc.initialize({ blocks: [], properties });
104+
doc.initialize({
105+
blocks: [],
106+
properties,
107+
});
99108

100109
expect(doc.getProperty('readOnly')).toBe(true);
101110
expect(doc.getProperty('customProp')).toBe('value');

0 commit comments

Comments
 (0)