Skip to content

Commit bbe15d5

Browse files
committed
disable check for iOS (bitkit-ios/issues/260)
1 parent 671ed9d commit bbe15d5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/specs/settings.e2e.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,10 @@ describe('@settings - Settings', () => {
251251
await sleep(3000);
252252
await launchFreshApp();
253253
// Balance should be hidden
254-
await elementById('ShowBalance').waitForDisplayed();
254+
// https://github.com/synonymdev/bitkit-ios/issues/260
255+
if (driver.isAndroid) {
256+
await elementById('ShowBalance').waitForDisplayed();
257+
}
255258
});
256259
});
257260

0 commit comments

Comments
 (0)