Skip to content

Commit 985f792

Browse files
authored
Test maintenance 23 Aug (#1389)
1 parent 3fa7018 commit 985f792

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

packages/e2e-tests/src/assert/dAppConnectorAssert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ class DAppConnectorAssert {
199199
}
200200

201201
async waitUntilBalanceNotEmpty() {
202-
await browser.waitUntil(async () => (await ExampleDAppPage.walletUsedAddress.getText()) !== '', {
202+
await browser.waitUntil(async () => (await ExampleDAppPage.walletBalance.getText()) !== '', {
203203
timeout: 6000,
204204
timeoutMsg: 'failed while waiting for DApp connection data'
205205
});

packages/e2e-tests/src/assert/settings/CollateralDrawerAssert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class CollateralDrawerAssert {
6666

6767
async assertSeeCurrentCollateralState(expectedState: string) {
6868
await browser.waitUntil(async () => (await SettingsPage.collateralLink.addon.getText()) === expectedState, {
69-
timeout: 15_000,
69+
timeout: 25_000,
7070
interval: 1000,
7171
timeoutMsg: 'failed while waiting for collateral state change'
7272
});

packages/e2e-tests/wdio.conf.base.ts

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ export const config: WebdriverIO.Config = {
66
runner: 'local',
77
specs: ['./src/features/**/*.feature'],
88
suites: {
9-
batch1: ['./src/features/Onboarding*.feature', './src/features/SettingsPageExtended*.feature'],
9+
batch1: [
10+
'./src/features/Onboarding*.feature',
11+
'./src/features/SettingsPageExtended*.feature',
12+
'./src/features/SendTransactionMetadata*.feature',
13+
'./src/features/SendTransactionMultipleSelection*.feature'
14+
],
1015
batch2: [
1116
'./src/features/SendTransactionSimpleExtended.part2.feature',
1217
'./src/features/SendTransactionSimpleExtended.part3.feature',
@@ -20,15 +25,14 @@ export const config: WebdriverIO.Config = {
2025
'./src/features/analytics/AnalyticsForgotPassword.feature',
2126
'./src/features/analytics/AnalyticsNavigation*.feature',
2227
'./src/features/analytics/AnalyticsNFTs*.feature',
23-
'./src/features/analytics/AnalyticsOnboardingEvents.feature',
24-
'./src/features/SendTransactionMetadata*.feature',
25-
'./src/features/SendTransactionMultipleSelection*.feature'
28+
'./src/features/analytics/AnalyticsOnboardingEvents.feature'
2629
],
2730
batch4: [
2831
'./src/features/e2e/MultidelegationSwitchingPoolsExtendedE2E.feature',
29-
'./src/features/e2e/SendNft*.feature'
32+
'./src/features/e2e/SendNft*.feature',
33+
'./src/features/TokensPage*.feature'
3034
],
31-
batch5: ['./src/features/AddressBook*.feature'],
35+
batch5: ['./src/features/AddressBook*.feature', './src/features/MultidelegationDelegatedFundsSingle*.feature'],
3236
batch6: [
3337
'./src/features/Collateral*.feature',
3438
'./src/features/NavigationTop*.feature',
@@ -78,9 +82,9 @@ export const config: WebdriverIO.Config = {
7882
'./src/features/e2e/StakingSwitchingPools*.feature',
7983
'./src/features/SettingsPagePopup*.feature'
8084
],
81-
batch14: ['./src/features/Transactions*.feature', './src/features/MultidelegationDelegatedFundsSingle*.feature'],
85+
batch14: ['./src/features/Transactions*.feature'],
8286
batch15: ['./src/features/NFTsFolders*.feature'],
83-
batch16: ['./src/features/TokensPage*.feature', './src/features/SendTransactionBundlesExtended*.feature']
87+
batch16: ['./src/features/SendTransactionBundlesExtended*.feature']
8488
},
8589
automationProtocol: 'webdriver',
8690
exclude: [],

0 commit comments

Comments
 (0)