Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gohabereg committed Sep 6, 2023
1 parent c352aac commit d40f0ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ describe('FormattingInlineNode', () => {
it('should create new FormattingInlineNode with children split from the original one', () => {
const newNode = node.split(firstChildMock.length);

expect(newNode?.children).toEqual([ secondChildMock, thirdChildMock ]);
expect(newNode?.children).toEqual([secondChildMock, thirdChildMock]);
});

it('should call split method of child containing the specified index', () => {
Expand Down

0 comments on commit d40f0ab

Please sign in to comment.