@@ -233,7 +233,7 @@ test.serial(
233233 async t => {
234234 const testDenom = 'utestvbank' ;
235235 const proposalPath = '/tmp/vbank-setdenommetadata-proposal.json' ;
236- const fs = await import ( 'fs/promises' ) ;
236+ const fs = await import ( 'node: fs/promises' ) ;
237237 const govModuleAddress = await queryGovModuleAddress ( ) ;
238238 t . truthy ( govModuleAddress , 'gov module address should be discoverable' ) ;
239239
@@ -353,7 +353,7 @@ test.serial(
353353test . serial ( 'can update existing denom metadata via governance' , async t => {
354354 const testDenom = 'utestvbank2' ;
355355 const proposalPath = '/tmp/vbank-update-metadata-proposal.json' ;
356- const fs = await import ( 'fs/promises' ) ;
356+ const fs = await import ( 'node: fs/promises' ) ;
357357 const govModuleAddress = await queryGovModuleAddress ( ) ;
358358 t . truthy ( govModuleAddress , 'gov module address should be discoverable' ) ;
359359
@@ -494,7 +494,7 @@ test.serial(
494494 'SetDenomMetaData with invalid metadata fails validation' ,
495495 async t => {
496496 const proposalPath = '/tmp/vbank-invalid-metadata-proposal.json' ;
497- const fs = await import ( 'fs/promises' ) ;
497+ const fs = await import ( 'node: fs/promises' ) ;
498498 const govModuleAddress = await queryGovModuleAddress ( ) ;
499499 t . truthy ( govModuleAddress , 'gov module address should be discoverable' ) ;
500500
0 commit comments