Skip to content

Commit ff36451

Browse files
committed
fix: lint
1 parent 65a117a commit ff36451

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/pluggableWidgets/rich-text-web/src/__tests__/RichText.spec.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,16 @@ describe("Rich Text", () => {
6262
});
6363

6464
it("renders with character count status bar", () => {
65-
const component = render(<RichText {...defaultProps} statusBarContent={"characterCount" as StatusBarContentEnum} />);
65+
const component = render(
66+
<RichText {...defaultProps} statusBarContent={"characterCount" as StatusBarContentEnum} />
67+
);
6668
expect(component.container).toMatchSnapshot();
6769
});
6870

6971
it("renders with HTML character count status bar", () => {
70-
const component = render(<RichText {...defaultProps} statusBarContent={"characterCountHtml" as StatusBarContentEnum} />);
72+
const component = render(
73+
<RichText {...defaultProps} statusBarContent={"characterCountHtml" as StatusBarContentEnum} />
74+
);
7175
expect(component.container).toMatchSnapshot();
7276
});
7377

0 commit comments

Comments
 (0)