File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
packages/pluggableWidgets/rich-text-web/src/__tests__ Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -62,12 +62,16 @@ describe("Rich Text", () => {
62
62
} ) ;
63
63
64
64
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
+ ) ;
66
68
expect ( component . container ) . toMatchSnapshot ( ) ;
67
69
} ) ;
68
70
69
71
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
+ ) ;
71
75
expect ( component . container ) . toMatchSnapshot ( ) ;
72
76
} ) ;
73
77
You can’t perform that action at this time.
0 commit comments