Skip to content

Commit dfd293f

Browse files
committed
fix config and disable tests that are not migrated to unified framework
1 parent 7b51756 commit dfd293f

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

tests/performance/login/import-multiple-srps.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ import {
1919
} from '../../tags.performance.js';
2020

2121
/* Scenario 4: Import SRP with +50 accounts, SRP 1, SRP 2, SRP 3 */
22+
// TODO(MMQA-1616): Re-enable after migrating this spec to tests/framework/fixture.
2223
test.describe(`${PerformanceLogin} ${PerformanceAccountList}`, () => {
23-
test(
24+
test.skip(
2425
'Import SRP with +50 accounts, SRP 1, SRP 2, SRP 3',
2526
{ tag: '@accounts-team' },
2627
async ({ device, performanceTracker }) => {

tests/performance/login/uniswap-interaction.spec.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@ import AppwrightSelectors from '../../framework/AppwrightSelectors.ts';
2020
const UNISWAP_URL = 'https://app.uniswap.org';
2121
const UNISWAP_DAPP_NAME = 'Uniswap';
2222

23+
// TODO(MMQA-1616): Re-enable after migrating this spec to tests/framework/fixture.
24+
2325
test.describe(`${PerformanceLogin}`, () => {
2426
test.setTimeout(240000);
2527

26-
test(
28+
test.skip(
2729
'Connect to Uniswap dapp, edit accounts, choose another account, and skip Solana popup',
2830
{ tag: '@metamask-mobile-platform' },
2931
async ({ device, performanceTracker }, testInfo) => {

tests/playwright.config.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,9 @@ export default defineConfig({
9191

9292
{
9393
name: 'android-onboarding',
94-
testMatch: '**/performance/onboarding/**/*.spec.js',
95-
testIgnore: '**/performance/onboarding/seedless-*.spec.js',
94+
testMatch: '**/performance/onboarding/**/*.spec.ts',
95+
testIgnore: '**/performance/onboarding/seedless-*.spec.ts',
96+
9697
use: {
9798
platform: Platform.ANDROID,
9899
device: {
@@ -111,8 +112,8 @@ export default defineConfig({
111112
},
112113
{
113114
name: 'ios-onboarding',
114-
testMatch: '**/performance/onboarding/**/*.spec.js',
115-
testIgnore: '**/performance/onboarding/seedless-*.spec.js',
115+
testMatch: '**/performance/onboarding/**/*.spec.ts',
116+
testIgnore: '**/performance/onboarding/seedless-*.spec.ts',
116117
use: {
117118
platform: Platform.IOS,
118119
device: {

0 commit comments

Comments
 (0)