From de03112f8a743d7af3ceb2d6810a931290d12117 Mon Sep 17 00:00:00 2001 From: Piotr Stachyra Date: Mon, 18 May 2026 09:57:16 +0200 Subject: [PATCH 1/5] test: adjust facts for ios --- test/helpers/widgets.ts | 2 +- test/specs/widgets.e2e.ts | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/test/helpers/widgets.ts b/test/helpers/widgets.ts index 53ce9ad..58f6de8 100644 --- a/test/helpers/widgets.ts +++ b/test/helpers/widgets.ts @@ -39,7 +39,7 @@ const WIDGETS: Record = { listItemId: 'WidgetListItem-facts', actionName: 'Bitcoin Facts', homeId: () => (driver.isIOS ? 'FactsWidget' : undefined), - hasSettings: () => driver.isIOS, + hasSettings: () => false, }, weather: { listItemId: 'WidgetListItem-weather', diff --git a/test/specs/widgets.e2e.ts b/test/specs/widgets.e2e.ts index c169d65..a938616 100644 --- a/test/specs/widgets.e2e.ts +++ b/test/specs/widgets.e2e.ts @@ -88,16 +88,6 @@ describe('@widgets - Widgets', () => { for (const widget of contentWidgets) { await addWidget(widget); await expectWidgetSavedInEditList(widget); - - if (widget === 'facts') { - await openSavedWidgetPreview(widget); - await elementById('WidgetEdit').waitForDisplayed({ - reverse: driver.isAndroid, - timeout: 5000, - }); - await tap('NavigationBack'); - } - await deleteWidget(widget); } }); From 522302999a3d5b1f394a9c6f2faa8a330c088d95 Mon Sep 17 00:00:00 2001 From: Piotr Stachyra Date: Mon, 18 May 2026 11:46:09 +0200 Subject: [PATCH 2/5] test: add/remove calc --- test/specs/widgets.e2e.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/specs/widgets.e2e.ts b/test/specs/widgets.e2e.ts index a938616..db9c289 100644 --- a/test/specs/widgets.e2e.ts +++ b/test/specs/widgets.e2e.ts @@ -81,7 +81,7 @@ describe('@widgets - Widgets', () => { }); ciIt('@widgets_2 - Can add/remove redesigned content widgets', async () => { - const contentWidgets: WidgetId[] = ['blocks', 'news', 'facts', 'weather']; + const contentWidgets: WidgetId[] = ['blocks', 'news', 'facts', 'weather', 'calculator']; await deleteAllDefaultWidgets(); From e122c195ec9a18333c51cab4a4ff3956fc817c57 Mon Sep 17 00:00:00 2001 From: Piotr Stachyra Date: Mon, 18 May 2026 12:17:27 +0200 Subject: [PATCH 3/5] update calc id --- test/helpers/widgets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers/widgets.ts b/test/helpers/widgets.ts index 58f6de8..255fea9 100644 --- a/test/helpers/widgets.ts +++ b/test/helpers/widgets.ts @@ -55,7 +55,7 @@ const WIDGETS: Record = { }, calculator: { listItemId: 'WidgetListItem-calculator', - actionName: 'Calculator', + actionName: 'Bitcoin Calculator', homeId: () => 'CalculatorWidget', hasSettings: () => false, }, From 5b5ff34a7cbeb220d57d9262f2ba221233552365 Mon Sep 17 00:00:00 2001 From: Piotr Stachyra Date: Wed, 20 May 2026 16:36:51 +0200 Subject: [PATCH 4/5] temp - do not run paykit for now --- test/specs/paykit.e2e.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/specs/paykit.e2e.ts b/test/specs/paykit.e2e.ts index c1cb094..d9b9bfd 100644 --- a/test/specs/paykit.e2e.ts +++ b/test/specs/paykit.e2e.ts @@ -55,7 +55,7 @@ async function openContactActivity(publicKey: string) { await tap('ContactActivity'); } -describe('@pubky @paykit - Public payments', () => { +describe('@paykit - Public payments', () => { beforeEach(async () => { await reinstallApp(); await completeOnboarding(); From 204e3f4dc6275c2c5f74bf0178a6a7a40c27255e Mon Sep 17 00:00:00 2001 From: Piotr Stachyra Date: Wed, 20 May 2026 19:36:28 +0200 Subject: [PATCH 5/5] temp - skip pubky tests --- test/specs/paykit.e2e.ts | 2 +- test/specs/pubky-profile.e2e.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/specs/paykit.e2e.ts b/test/specs/paykit.e2e.ts index d9b9bfd..ce2aa8d 100644 --- a/test/specs/paykit.e2e.ts +++ b/test/specs/paykit.e2e.ts @@ -55,7 +55,7 @@ async function openContactActivity(publicKey: string) { await tap('ContactActivity'); } -describe('@paykit - Public payments', () => { +describe.skip('@pubky @paykit - Public payments', () => { beforeEach(async () => { await reinstallApp(); await completeOnboarding(); diff --git a/test/specs/pubky-profile.e2e.ts b/test/specs/pubky-profile.e2e.ts index 871114d..7fdd842 100644 --- a/test/specs/pubky-profile.e2e.ts +++ b/test/specs/pubky-profile.e2e.ts @@ -44,7 +44,7 @@ import { ciIt } from '../helpers/suite'; // Covers scenarios from docs/pubky-profile-manual-e2e.md. // Each test reinstalls + onboards so any single test can be run in isolation // (e.g. `--mochaOpts.grep "@pubky_profile_2"` or `"@pubky_profile_3"`). -describe('@pubky @pubky_profile - Pubky profile', () => { +describe.skip('@pubky @pubky_profile - Pubky profile', () => { beforeEach(async () => { await reinstallApp(); await completeOnboarding();