Skip to content

Commit 5c391f6

Browse files
refactor: Update test descriptions to use SmokeAccounts tag
- Replaced instances of SmokeNetworkExpansion with SmokeAccounts in error boundary, import wallet, and reveal secret recovery phrase test files for improved test categorization.
1 parent 004a9d1 commit 5c391f6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

e2e/specs/accounts/error-boundary-srp-backup.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ import {
88
withFixtures,
99
defaultGanacheOptions,
1010
} from '../../fixtures/fixture-helper';
11-
import { SmokeNetworkExpansion } from '../../tags';
11+
import { SmokeAccounts } from '../../tags';
1212
import TestHelpers from '../../helpers';
1313
import Assertions from '../../utils/Assertions';
1414
import RevealSecretRecoveryPhrase from '../../pages/Settings/SecurityAndPrivacy/RevealSecretRecoveryPhrase';
1515
import ErrorBoundaryView from '../../pages/ErrorBoundaryView/ErrorBoundaryView';
1616
import { buildPermissions } from '../../fixtures/utils';
1717
const PASSWORD = '123123123';
1818

19-
describe(SmokeNetworkExpansion('Error Boundary Screen'), () => {
19+
describe(SmokeAccounts('Error Boundary Screen'), () => {
2020
beforeAll(async () => {
2121
jest.setTimeout(2500000);
2222
await TestHelpers.reverseServerPort();

e2e/specs/accounts/import-wallet-account.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict';
2-
import { SmokeNetworkExpansion } from '../../tags';
2+
import { SmokeAccounts } from '../../tags';
33
import WalletView from '../../pages/wallet/WalletView';
44
import { importWalletWithRecoveryPhrase } from '../../viewHelper';
55
import AccountListBottomSheet from '../../pages/wallet/AccountListBottomSheet';
@@ -10,7 +10,7 @@ import CommonView from '../../pages/CommonView';
1010
import SuccessImportAccountView from '../../pages/importAccount/SuccessImportAccountView';
1111
import TestHelpers from '../../helpers';
1212

13-
describe(SmokeNetworkExpansion('Import account via private to wallet'), () => {
13+
describe(SmokeAccounts('Import account via private to wallet'), () => {
1414
// This key is for testing private key import only
1515
// I should NEVER hold any eth or token
1616
const TEST_PRIVATE_KEY =

e2e/specs/accounts/reveal-secret-recovery-phrase.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
import { SmokeNetworkExpansion } from '../../tags.js';
3+
import { SmokeAccounts } from '../../tags.js';
44
import TestHelpers from '../../helpers.js';
55
import { loginToApp } from '../../viewHelper.js';
66
import TabBarComponent from '../../pages/wallet/TabBarComponent.js';
@@ -31,7 +31,7 @@ const QUIZ_QUESTION_1 = 1;
3131
const QUIZ_QUESTION_2 = 2;
3232

3333
describe(
34-
SmokeNetworkExpansion('Secret Recovery Phrase Reveal from Settings'),
34+
SmokeAccounts('Secret Recovery Phrase Reveal from Settings'),
3535
() => {
3636
beforeAll(async () => {
3737
await TestHelpers.reverseServerPort();

0 commit comments

Comments
 (0)