-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Description - Remove unused util functions - Remove unused dev dependency [`pixelmatch`](https://www.npmjs.com/package/pixelmatch) - Move navigation utils from `e2e/src/utils/utils.js` to `e2e/src/utils/navigation.js` - Remove old todo test specs. ### Test plan - [x] Tested locally on iOS - [x] Tested locally on Android - [x] Tested in CI ### Related issues - N/A ### Backwards compatibility Yes ### Network scalability N/A
- Loading branch information
Showing
18 changed files
with
106 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import WalletConnectV2 from './usecases/WalletConnectV2' | ||
import WalletConnect from './usecases/WalletConnect' | ||
import { quickOnboarding } from './utils/utils' | ||
|
||
describe('Given Wallet Connect', () => { | ||
describe('Given Dapp Connection', () => { | ||
beforeAll(async () => { | ||
await quickOnboarding() | ||
}) | ||
|
||
describe('When V2', WalletConnectV2) | ||
describe('When WalletConnect', WalletConnect) | ||
}) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { waitForElementById } from './utils' | ||
|
||
export async function navigateToSecurity() { | ||
await waitForElementById('WalletHome/SettingsGearButton', { | ||
tap: true, | ||
}) | ||
await waitForElementById('SettingsMenu/Security', { | ||
tap: true, | ||
}) | ||
} | ||
|
||
export async function navigateToProfile() { | ||
await waitForElementById('WalletHome/SettingsGearButton', { | ||
tap: true, | ||
}) | ||
await waitForElementById('SettingsMenu/Profile', { | ||
tap: true, | ||
}) | ||
} | ||
|
||
export async function navigateToPreferences() { | ||
await waitForElementById('WalletHome/SettingsGearButton', { | ||
tap: true, | ||
}) | ||
await waitForElementById('SettingsMenu/Preferences', { | ||
tap: true, | ||
}) | ||
} |
Oops, something went wrong.