File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
packages/sequencer/test/settlement Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,9 @@ export const settlementTestFn = (
255255 }
256256
257257 beforeAll ( async ( ) => {
258+ console . log ( "Setup" ) ;
258259 appChain = setupAppChain ( ) ;
260+ console . log ( "Start" ) ;
259261
260262 await appChain . start (
261263 settlementType === "proven" ,
@@ -282,18 +284,22 @@ export const settlementTestFn = (
282284 const accountService = appChain . sequencer . dependencyContainer . resolve (
283285 MinaBlockchainAccounts
284286 ) ;
287+ console . log ( "GetFunded" ) ;
285288 const accs = await accountService . getFundedAccounts ( 3 ) ;
286289 testAccounts = accs . slice ( 1 ) ;
287290
288291 console . log (
289292 `Funding ${ sequencerKey . toPublicKey ( ) . toBase58 ( ) } from ${ accs [ 0 ] . toPublicKey ( ) . toBase58 ( ) } `
290293 ) ;
291294
295+ console . log ( "FundAccount" ) ;
292296 await accountService . fundAccountFrom (
293297 accs [ 0 ] ,
294298 sequencerKey . toPublicKey ( ) ,
295299 20 * 1e9
296300 ) ;
301+
302+ console . log ( "beforeAll finished" ) ;
297303 } , timeout ) ;
298304
299305 afterAll ( ( ) => {
You can’t perform that action at this time.
0 commit comments