We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bcf7f0 commit 002c93cCopy full SHA for 002c93c
1 file changed
test/helpers/actions.ts
@@ -606,7 +606,12 @@ export async function restoreWallet(
606
}
607
608
if (expectBackGroundPaymentsSheet) {
609
- await dismissBackgroundPaymentsTimedSheet();
+ try { await dismissBackgroundPaymentsTimedSheet();} catch {
610
+ console.info('→ Could not dismiss background payments timed sheet, trying again...');
611
+ try { await dismissBackgroundPaymentsTimedSheet({ triggerTimedSheet: true });} catch {
612
+ console.info('→ No background payments timed sheet to dismiss, continuing...');
613
+ }
614
615
616
617
// Wait for Suggestions Label to appear
0 commit comments