@@ -148,7 +148,6 @@ Given('a seeded compression roundtrip dataset', async function (this: World<Reco
148148
149149When (
150150 'I export events using {string} compression' ,
151- { timeout : 20000 } ,
152151 async function ( this : World < Record < string , unknown > > , format : string ) {
153152 if ( format !== 'gzip' && format !== 'xz' ) {
154153 throw new Error ( `Unsupported test format: ${ format } ` )
@@ -184,21 +183,17 @@ When('I remove the seeded roundtrip events from the database', async function (t
184183 . delete ( )
185184} )
186185
187- When (
188- 'I import the compressed roundtrip file' ,
189- { timeout : 20000 } ,
190- async function ( this : World < Record < string , unknown > > ) {
191- const state = getRoundtripState ( this )
186+ When ( 'I import the compressed roundtrip file' , async function ( this : World < Record < string , unknown > > ) {
187+ const state = getRoundtripState ( this )
192188
193- const result = await runCliScript ( 'src/import-events.ts' , [
194- state . outputFilePath ,
195- '--batch-size' ,
196- '2' ,
197- ] )
189+ const result = await runCliScript ( 'src/import-events.ts' , [
190+ state . outputFilePath ,
191+ '--batch-size' ,
192+ '2' ,
193+ ] )
198194
199- assertCommandSuccess ( result , 'import script' )
200- } ,
201- )
195+ assertCommandSuccess ( result , 'import script' )
196+ } )
202197
203198Then ( 'the seeded roundtrip events are restored' , async function ( this : World < Record < string , unknown > > ) {
204199 const state = getRoundtripState ( this )
@@ -231,4 +226,4 @@ After({ tags: '@compression-roundtrip' }, async function (this: World<Record<str
231226 }
232227
233228 this . parameters [ ROUNDTRIP_KEY ] = undefined
234- } )
229+ } )
0 commit comments