@@ -100,7 +100,11 @@ describe('useBenchmarkBannerState', () => {
100100 isPending : false ,
101101 } ) ;
102102 setupQueryMock ( [
103- { benchmarkId : 'bm-1' , provider : 'aws' , status : SimplifiedRunStatus . RUNNING } ,
103+ {
104+ benchmarkId : 'bm-1' ,
105+ provider : 'aws' ,
106+ status : SimplifiedRunStatus . RUNNING ,
107+ } ,
104108 ] ) ;
105109
106110 const { result } = renderHook ( ( ) => useBenchmarkBannerState ( ) ) ;
@@ -114,7 +118,11 @@ describe('useBenchmarkBannerState', () => {
114118 isPending : false ,
115119 } ) ;
116120 setupQueryMock ( [
117- { benchmarkId : 'bm-1' , provider : 'aws' , status : SimplifiedRunStatus . CREATED } ,
121+ {
122+ benchmarkId : 'bm-1' ,
123+ provider : 'aws' ,
124+ status : SimplifiedRunStatus . CREATED ,
125+ } ,
118126 ] ) ;
119127
120128 const { result } = renderHook ( ( ) => useBenchmarkBannerState ( ) ) ;
@@ -128,7 +136,11 @@ describe('useBenchmarkBannerState', () => {
128136 isPending : false ,
129137 } ) ;
130138 setupQueryMock ( [
131- { benchmarkId : 'bm-1' , provider : 'aws' , status : SimplifiedRunStatus . FAILED } ,
139+ {
140+ benchmarkId : 'bm-1' ,
141+ provider : 'aws' ,
142+ status : SimplifiedRunStatus . FAILED ,
143+ } ,
132144 ] ) ;
133145
134146 const { result } = renderHook ( ( ) => useBenchmarkBannerState ( ) ) ;
@@ -161,7 +173,11 @@ describe('useBenchmarkBannerState', () => {
161173 isPending : false ,
162174 } ) ;
163175 setupQueryMock ( [
164- { benchmarkId : 'bm-1' , provider : 'aws' , status : SimplifiedRunStatus . RUNNING } ,
176+ {
177+ benchmarkId : 'bm-1' ,
178+ provider : 'aws' ,
179+ status : SimplifiedRunStatus . RUNNING ,
180+ } ,
165181 {
166182 benchmarkId : 'bm-2' ,
167183 provider : 'azure' ,
0 commit comments