@@ -208,7 +208,9 @@ async function approveProposal({
208208 } ) ;
209209 } ) ;
210210 if ( showInsufficientBalanceModal ) {
211- await expect ( page . getByText ( "Insufficient Balance" ) ) . toBeVisible ( ) ;
211+ await expect ( page . getByText ( "Insufficient Balance" ) ) . toBeVisible ( {
212+ timeout : 10_000 ,
213+ } ) ;
212214 await page . getByRole ( "button" , { name : "Proceed Anyway" } ) . click ( ) ;
213215 }
214216 const transactionResult = await sandbox . account . functionCall ( {
@@ -273,7 +275,7 @@ test.describe("Should vote on exchange proposal using sandbox RPC and show updat
273275 instanceAccount,
274276 daoAccount,
275277 } ) => {
276- test . setTimeout ( 300_000 ) ;
278+ test . setTimeout ( 400_000 ) ;
277279 const sandbox = await setupSandboxAndCreateProposal ( { daoAccount, page } ) ;
278280 await mockWithFTBalance ( { page, daoAccount, isSufficient : true } ) ;
279281
@@ -294,7 +296,7 @@ test.describe("Should vote on exchange proposal using sandbox RPC and show updat
294296 instanceAccount,
295297 daoAccount,
296298 } ) => {
297- test . setTimeout ( 300_000 ) ;
299+ test . setTimeout ( 400_000 ) ;
298300 const sandbox = await setupSandboxAndCreateProposal ( { daoAccount, page } ) ;
299301 await page . goto ( `/${ instanceAccount } /widget/app?page=asset-exchange&id=0` ) ;
300302 await mockWithFTBalance ( { page, daoAccount, isSufficient : false } ) ;
@@ -320,7 +322,7 @@ test.describe("Should vote on exchange proposal using sandbox RPC and show updat
320322 instanceAccount,
321323 daoAccount,
322324 } ) => {
323- test . setTimeout ( 300_000 ) ;
325+ test . setTimeout ( 400_000 ) ;
324326 const sandbox = await setupSandboxAndCreateProposal ( { daoAccount, page } ) ;
325327 await mockWithFTBalance ( { page, daoAccount, isSufficient : true } ) ;
326328
0 commit comments