File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -394,18 +394,23 @@ export class TinnyEnvironment {
394394 throw new Error ( `Error while creating testnet, aborting test run` ) ;
395395 }
396396
397- const testConfig = await this . testnet . getTestnetConfig ( ) ;
398- console . log ( 'testConfig:' , JSON . stringify ( testConfig ) ) ;
397+ await this . testnet . getTestnetConfig ( ) ;
398+ console . log ( '✅ 1. Testnet config fetched' ) ;
399399 } else if ( this . network === LIT_NETWORK . Custom ) {
400400 const context =
401401 this . customNetworkContext || ( await import ( './networkContext.json' ) ) ;
402402 this . _contractContext = context ;
403+ console . log ( '✅ 2. Custom network context fetched' ) ;
403404 }
404405
405406 await this . setupLitNodeClient ( ) ;
407+ console . log ( '✅ 3. LitNodeClient setup' ) ;
406408 await this . setupSuperCapacityDelegationAuthSig ( ) ;
409+ console . log ( '✅ 4. Super capacity delegation auth sig setup' ) ;
407410 await this . setupBareEthAuthSig ( ) ;
411+ console . log ( '✅ 5. Bare eth auth sig setup' ) ;
408412 } catch ( e ) {
413+ console . log ( '❌ Failed to init() tinny' ) ;
409414 const err = toErrorWithMessage ( e ) ;
410415 console . log (
411416 `[𐬺🧪 Tinny Environment𐬺] Failed to init() tinny ${ err . message } `
You can’t perform that action at this time.
0 commit comments