Skip to content

Commit b8f655a

Browse files
committed
test: fix lint
1 parent eb3dc3b commit b8f655a

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

tests/component-view/presets/notifications.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,6 @@ export function buildNotificationsState(
151151
selectedAccountGroup: NOTIFICATIONS_HD_GROUP_ID,
152152
},
153153
},
154-
} as DeepPartial<RootState>['engine'],
154+
} as unknown as DeepPartial<RootState>['engine'],
155155
};
156156
}

tests/smoke/assets/market-insights/view-market-insights.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import TokenOverview from '../../../page-objects/wallet/TokenOverview';
55
import MarketInsightsEntryCard from '../../../page-objects/wallet/MarketInsightsEntryCard';
66
import MarketInsightsView from '../../../page-objects/wallet/MarketInsightsView';
77
import QuoteView from '../../../page-objects/swaps/QuoteView';
8+
import BuildQuoteView from '../../../page-objects/Ramps/BuildQuoteView';
89
import Assertions from '../../../framework/Assertions';
910
import { withFixtures } from '../../../framework/fixtures/FixtureHelper';
1011
import FixtureBuilder from '../../../framework/fixtures/FixtureBuilder';
@@ -160,7 +161,7 @@ describe(
160161
{
161162
fixture: new FixtureBuilder().build(),
162163
restartDevice: true,
163-
testSpecificMock: mockWithDataAndRamps,
164+
testSpecificMock: mockWithData,
164165
languageAndLocale: { language: 'en', locale: 'en_US' },
165166
},
166167
async () => {

tests/smoke/notifications/notification-settings-flow.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable jest/no-disabled-tests -- E2E skipped; covered by component view tests */
12
import { SmokeNetworkAbstractions } from '../../tags';
23
import Assertions from '../../framework/Assertions';
34
import { withFixtures } from '../../framework/fixtures/FixtureHelper';

0 commit comments

Comments
 (0)