Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions tests/performance/onboarding/import-wallet.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import TimerHelper from '../../framework/TimerHelper';
import { getPasswordForScenario } from '../../framework/utils/TestConstants.js';
import { Performance, PerformanceOnboarding } from '../../tags.performance.js';
import OnboardingView from '../../page-objects/Onboarding/OnboardingView';
// MMQA-1667 verification: performance-only PR should reuse main builds (incl. BrowserStack apps).
import {
asPlaywrightElement,
PlatformDetector,
Expand Down Expand Up @@ -33,7 +34,8 @@ test.describe(PerformanceOnboarding, () => {
async ({ currentDeviceDetails, driver, performanceTracker }) => {
const timer1 = new TimerHelper(
'Time since the user clicks on "Create new wallet" button until "Social sign up" is visible',
{ ios: 1500, android: 1800 },
// MMQA-1667: bump thresholds so this is a real perf-spec delta (not comment-only).
{ ios: 1520, android: 1820 },
currentDeviceDetails.platform,
);
const timer2 = new TimerHelper(
Expand Down Expand Up @@ -62,7 +64,7 @@ test.describe(PerformanceOnboarding, () => {
{ ios: 21000, android: 5000 },
currentDeviceDetails.platform,
);
const walletTokenLoadTimeoutMs = 60_000;
const walletTokenLoadTimeoutMs = 60_500; // MMQA-1667 path verification

const productionFeatureFlags = await fetchProductionFeatureFlags(
'main',
Expand Down
Loading