Skip to content

Commit 33d3dc1

Browse files
committed
chore: lint fix
1 parent bdea407 commit 33d3dc1

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

test/e2e/tests/multichain-accounts/multichain-wallet-details.spec.ts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import AccountListPage from '../../page-objects/pages/account-list-page';
44
import WalletDetailsPage from '../../page-objects/pages/wallet-details-page';
55
import { Driver } from '../../webdriver/driver';
66
import HeaderNavbar from '../../page-objects/pages/header-navbar';
7-
import { mockMultichainAccountsFeatureFlag } from './common';
87
import { withSolanaAccountSnap } from '../solana/common-solana';
8+
import { mockMultichainAccountsFeatureFlag } from './common';
99

1010
describe('Multichain Accounts - Wallet Details', function (this: Suite) {
1111
it('should view wallet details with one Ethereum and one Solana account and show SRP backup reminder', async function () {
@@ -14,16 +14,14 @@ describe('Multichain Accounts - Wallet Details', function (this: Suite) {
1414
title: this.test?.fullTitle(),
1515
numberOfAccounts: 1,
1616
withFixtureBuilder: (builder) =>
17-
builder
18-
.withKeyringControllerMultiSRP()
19-
.withPreferencesController({
20-
dismissSeedBackUpReminder: false,
21-
}),
17+
builder.withKeyringControllerMultiSRP().withPreferencesController({
18+
dismissSeedBackUpReminder: false,
19+
}),
2220
withCustomMocks: async (mockServer: Mockttp) => {
2321
return mockMultichainAccountsFeatureFlag(mockServer);
2422
},
2523
},
26-
async (driver: Driver, mockServer: Mockttp, extensionId: string) => {
24+
async (driver: Driver) => {
2725
const headerNavbar = new HeaderNavbar(driver);
2826
await headerNavbar.openAccountMenu();
2927

@@ -49,12 +47,13 @@ describe('Multichain Accounts - Wallet Details', function (this: Suite) {
4947
{
5048
title: this.test?.fullTitle(),
5149
numberOfAccounts: 1,
52-
withFixtureBuilder: (builder) => builder.withKeyringControllerMultiSRP(),
50+
withFixtureBuilder: (builder) =>
51+
builder.withKeyringControllerMultiSRP(),
5352
withCustomMocks: async (mockServer: Mockttp) => {
5453
return mockMultichainAccountsFeatureFlag(mockServer);
5554
},
5655
},
57-
async (driver: Driver, mockServer: Mockttp, extensionId: string) => {
56+
async (driver: Driver) => {
5857
const headerNavbar = new HeaderNavbar(driver);
5958
await headerNavbar.openAccountMenu();
6059

0 commit comments

Comments
 (0)