@@ -8,10 +8,11 @@ describe('renderer/components/filters/SearchFilterSuggestions.tsx', () => {
88 const tree = renderWithAppContext (
99 < SearchFilterSuggestions inputValue = { '' } open = { false } /> ,
1010 {
11-
12- settings : {
13- ...mockSettings ,
14- detailedNotifications : false } as SettingsState } ,
11+ settings : {
12+ ...mockSettings ,
13+ detailedNotifications : false ,
14+ } as SettingsState ,
15+ } ,
1516 ) ;
1617
1718 expect ( tree ) . toMatchSnapshot ( ) ;
@@ -21,10 +22,11 @@ describe('renderer/components/filters/SearchFilterSuggestions.tsx', () => {
2122 const tree = renderWithAppContext (
2223 < SearchFilterSuggestions inputValue = { '' } open = { true } /> ,
2324 {
24-
25- settings : {
26- ...mockSettings ,
27- detailedNotifications : true } as SettingsState } ,
25+ settings : {
26+ ...mockSettings ,
27+ detailedNotifications : true ,
28+ } as SettingsState ,
29+ } ,
2830 ) ;
2931
3032 expect ( tree ) . toMatchSnapshot ( ) ;
@@ -34,10 +36,11 @@ describe('renderer/components/filters/SearchFilterSuggestions.tsx', () => {
3436 const tree = renderWithAppContext (
3537 < SearchFilterSuggestions inputValue = { '' } open = { true } /> ,
3638 {
37-
38- settings : {
39- ...mockSettings ,
40- detailedNotifications : true } as SettingsState } ,
39+ settings : {
40+ ...mockSettings ,
41+ detailedNotifications : true ,
42+ } as SettingsState ,
43+ } ,
4144 ) ;
4245
4346 expect ( tree ) . toMatchSnapshot ( ) ;
@@ -47,10 +50,11 @@ describe('renderer/components/filters/SearchFilterSuggestions.tsx', () => {
4750 const tree = renderWithAppContext (
4851 < SearchFilterSuggestions inputValue = { 'invalid' } open = { true } /> ,
4952 {
50-
51- settings : {
52- ...mockSettings ,
53- detailedNotifications : false } as SettingsState } ,
53+ settings : {
54+ ...mockSettings ,
55+ detailedNotifications : false ,
56+ } as SettingsState ,
57+ } ,
5458 ) ;
5559
5660 expect ( tree ) . toMatchSnapshot ( ) ;
@@ -60,10 +64,11 @@ describe('renderer/components/filters/SearchFilterSuggestions.tsx', () => {
6064 const tree = renderWithAppContext (
6165 < SearchFilterSuggestions inputValue = { 'repo:' } open = { true } /> ,
6266 {
63-
64- settings : {
65- ...mockSettings ,
66- detailedNotifications : false } as SettingsState } ,
67+ settings : {
68+ ...mockSettings ,
69+ detailedNotifications : false ,
70+ } as SettingsState ,
71+ } ,
6772 ) ;
6873
6974 expect ( tree ) . toMatchSnapshot ( ) ;
0 commit comments