Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade React Native to 0.71.6 #6220

Merged
merged 176 commits into from
Jun 30, 2023
Merged

Conversation

jpcloureiro
Copy link
Contributor

@jpcloureiro jpcloureiro commented Apr 19, 2023

Description

React Native upgrade to 0.71.6 requires

Upgrade Helper

By using React-native upgrade helper (https://react-native-community.github.io/upgrade-helper/) we were able to bump one major version at a time. This approach allows us to handle specific version bump issues separately.

Most of the native (ios, android) changes were grabbed from this helper

React native Reanimated

Using Reanimated 2 we have the option to use Reanimated API v1 or V2. https://docs.swmansion.com/react-native-reanimated/docs/2.x/fundamentals/migration

Reanimated team added support for RN 0.71 on 2.14.4 but it is crashing our app on iOS native side.

We are forced to use Reanimated 3. This version only ships API v2, forcing us to do the V1 -> V2 migration as well as the gesture-handler that depends on it.

Hermes engine on Android

JSC does not fully support BigInt operations & that is a requirement for our app.

hermes version that comes with 0.71.6 crashes when some specific errors are thrown.

We can't use the latest version of hermes on 0.71.6 because its API is not compatible.

commit that fixes the crash facebook/hermes@f2f1a2e
We checked out https://github.com/facebook/hermes/releases/tag/hermes-2023-03-07-RNv0.71.4-31fdcf738940875c9bacf251e149006cf515d763, and cherry-picked the fix.

here's the tarball we are using https://github.com/MetaMask/hermes/tree/ae2ac688c3faf868d2360a10a7791226ed5702fb

hermes-engine/build.gradle had to be patched to allow the build process to fetch the tarball from our fork.

Why not Hermes on iOS as well?

We use JSC on iOS because it already has the necessary BigInt support. We tested hermes on iOS & it was unstable on our project (crashes)

Issue

Progresses https://github.com/metamask/mobile-planning/issues/690

Checklist

  • There is a related GitHub issue
  • Tests are included if applicable
  • Any added code is fully documented

@cortisiko cortisiko added the QA Passed A successful QA run through has been done label Jun 29, 2023
cortisiko
cortisiko previously approved these changes Jun 29, 2023
Copy link
Member

@cortisiko cortisiko left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR is officially QA passed.

@jpcloureiro jpcloureiro mentioned this pull request Jun 29, 2023
3 tasks
@jpcloureiro jpcloureiro force-pushed the upgrade/react-native/0.71.6-hermes branch from 1d3c652 to 87b94b1 Compare June 29, 2023 22:47
@jpcloureiro
Copy link
Contributor Author

This version bump happened when we had to regenerate yarn.lock

Hmm, why was this required? Regenerating the lockfile is a big change. If we could avoid this, we could reduce scope of this PR substantially and delay resolving the hexToBN issue described

Hey @Gudahtt we've revised yarn.lock to keep its changes to a minimum by running yarn on top of a yarn.lock file from main.

We also removed the hexToBN auxiliary function, leaving it as it was before.

Thanks for pointing that out!

@jpcloureiro jpcloureiro force-pushed the upgrade/react-native/0.71.6-hermes branch from 377de65 to 42826fe Compare June 30, 2023 17:54
@leotm leotm self-requested a review June 30, 2023 18:00
Copy link
Member

@leotm leotm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

great pairing and reviewing this pr today, lgtm :shipit:

@sonarcloud
Copy link

sonarcloud bot commented Jun 30, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug C 3 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 5 Code Smells

13.5% 13.5% Coverage
0.0% 0.0% Duplication

@jpcloureiro jpcloureiro merged commit 151b54e into main Jun 30, 2023
11 checks passed
@jpcloureiro jpcloureiro deleted the upgrade/react-native/0.71.6-hermes branch June 30, 2023 20:22
@github-actions github-actions bot locked and limited conversation to collaborators Jun 30, 2023
@metamaskbot metamaskbot added the release-7.3.0 Issue or pull request that will be included in release 7.3.0 label Jun 30, 2023
cortisiko added a commit that referenced this pull request Jul 12, 2023
* disable svg metro bundler config to allow Bigint to number conversion

* Update static-logos svg's

* Update .nvmrc from Node 14 to 16

* Update Gemfile for RN 0.71.6

* Update deps and pods

- Bump RN to 0.71.6 and update pods
- Add @ethereumjs/util
- Bump metro-react-native-babel-preset
- Bump rn-nodeify
- Bump package.json node engine
- Update Yarn lockfile

* Add commented Babel config from debugging SVGs

* Add back react-native-svg Metro config

* Test all @ethereumjs/util methods and BigInt

* udpate android configs

* Revert "Test all @ethereumjs/util methods and BigInt"

This reverts commit ad58291.

* Revert "Add commented Babel config from debugging SVGs"

This reverts commit d8f7279.

* Convert reanimated v1 code -> v2 for ReusableModal and Drawer

* Replace Notification animation with reanimated v2

* Use SheetBottom for DetectedTokens screen

* Remove layout animations on accordion for now

* Update AppState listener removal

* Expose boolean in dismiss callback for ReusableModal and SheetBottom

* Remove AppState listeners and fix lint

* patch react-native TextInput

disable android keyboard learning feature

* Move Flipper files on Android

* Update build gradle files with manifest placeholders and remove need for multidex

* Clean up MainActivity and MainApplication java files

* Configure gesture handler for Android in react-native.config.js

* Patch compile method for packages

* Bump blur and video packages

* Find node with xcode.env

* Update pod files with bumped libraries

* patch(react-native): make sdk versioning absolute

* update pods

* react-native-aes-crypto-fork: apply manual patch

* dont kill adb server when running on android

* skip build react-native from source

* Bump react-native-reanimated from 3.0.2 to 3.1.0

* Bump pod RNReanimated from 3.0.2 to 3.1.0

* Add Hermes ProGuard rules for Android

https://reactnative.dev/docs/hermes#android

* Doc pos eth-json-rpc-errors issue RE Hermes

* Add temp debug breakpoints and crash notes

* removed lint and audit blockers to test bitrise builds

* added lint disabled on files

* removed non-existing imports

* Manually set Error stack property

* Revert manually adding lru-cache

Done earlier to resolve build error:

lru-cache not accessible from @babel/helper-compilation-targets

* snapshot

* patch hermes-build

* remove commented code

* Android: build only one ABI during development

* Use JS exports in wdio config files

* add react-native-aes-crypto-forked patch

* feat(CI): Bitrise M1 Machine and React Native 0.71.6 compatibility upgrade  (#6327)

* [FIX] Gas is not re-calculated when updating a transaction (#5876)

* check gas is recalculate on confirm screen

* reset the value of gas before estimating

* update snapshot

* init engine for failing keyringcontroller

* test init

* mock transactioncontroller

* update test

* rebased to main

* revert test file name to index

* fix failing test

* enable M1 builds on RN

* updated NDK version

* bump to new workflow step and NDK version

* log out NDK home after install

* [FEATURE][MC] - Edit account name view (#6165)

* Edit account name view

* addressed review

* navigate to edit account name

* edit header style

* E2e appium/715 edit account name view (#6303)

* Fix flaky test

* Solve Browserstack errors

* Added Gesture.waitAndTap method AddContact and Contacts

---------

Co-authored-by: SamuelSalas <samuel.salas.reyes@gmail.com>

* Cleanup approve transaction review (#6213)

* Revert "ci: temporarily downgrade ubuntu to 20.04" (#5199)

This reverts commit 5542193.

* Fix duplicate test name lint warning (#6304)

The lint warning about a test title being repeated has been fixed. The
two tests were very similar; the titles have been updated to explain
how they are different.

---------

Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>
Co-authored-by: LeoTM <1881059+leotm@users.noreply.github.com>

* removed version print out step

* update bitrise step version

* updated ndk version

* added local prop file

* update build step and add local.properties file in android

* update local prop script

* bump ndk version in metamask gradle

* added strings to be translated for feature #6230 (#6308)

* bump ndk version

* add the NDK path to root gradle

* added hard code NDK version and path

* deps: force xml2js@>=0.5.0 via resolutions (#6240)

- CVE-2023-0842 / GHSA-776f-qx25-q3cc

* updated rootproject properties

* only update NDK version in patch

* only update NDK version

* removed local prop build step

* Revert "only update NDK version"

This reverts commit 2285dd3.

* Revert "Revert "only update NDK version""

This reverts commit 1cbfeb1.

* pull NDK path and bitrise script updates

* update filepath, script and gradle config to be more dynamic

* bump to max large M1

* update gradle to provide NDK path for bitrise

* more dynamic ndk path options

* update ndk path check

* added if check to function

* updated gradle for test

* updated gradle for test remove env check

* remove if check in react android patch

* updated ndkPath

* update build gradle

* remove ndk version

* remove ndk from gradle

* removed ndkVersion

* uncommented ndkVersion

* update file path name

* updated builds with name correction

* update version on install-missing-android-tools bitrise builds

* devDeps: Remove concat-cli (#6315)

Doesn't seem to ever have been useful.
Introduced in 69381f0

Prefer `cat`.

* Refactor SendTo - extract code to render from / to addresses into separate component (#6266)

* initial commit

* draft

* cleaned up

* lint

* include isBalanceZero for fromaddress

* fix snapshot

* resolved feedback

* renaming component names

* Update app/components/Views/SendFlow/AddressFrom/AddressFrom.test.tsx

Co-authored-by: Ariella Vu <20778143+digiwand@users.noreply.github.com>

* Update app/components/Views/SendFlow/SendTo/index.js

Co-authored-by: Ariella Vu <20778143+digiwand@users.noreply.github.com>

* removed redudant snapshot

* rebased to main

* snapshot update

* removed podfile change

---------

Co-authored-by: Ariella Vu <20778143+digiwand@users.noreply.github.com>

* On-ramp: Add redux-thunk, refactor successful order handler (#6257)

* Fix missing handler on mandatory modal (#6309)

* feature(on-ramp): add development environment to onramp-sdk (#6325)

* On-ramp: fix missing network name (#6340)

* 6.5.0 (#6241)

* 6.5.0

* fix(on-ramp): Add thunk to handle buy crypto deeplink (#6248)

* [FIX] Detox: wallet-tests.spec.js (#6250)

* fix wallet-tests.spec.js

* add collectible json

* updated collectible data for bitrise wallet

* fix: invalid title error (#6280)

* Update Network Badge to use Badge component of component library (#6254)

* Show unsupported token for network when watching tokens (#6258)

* [FIX] - Upgrading with deprecated test network selected (#6269)

* add migrations to handle deprecated networks

* use enums, const instead of strings

---------

Co-authored-by: CW <chris.wilcox@consensys.net>

* [FIX]  Patch assets-controller to not use BigInt (#6305)

* Patch assets-controller to not use BigInt

* Update to use public link

Co-authored-by: sethkfman <10342624+sethkfman@users.noreply.github.com>

* Update to spell out React Native

Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>

* Update to spell out React Native

Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>

---------

Co-authored-by: sethkfman <10342624+sethkfman@users.noreply.github.com>
Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>

* build 1104 (#6310)

* update changelog

---------

Co-authored-by: metamaskbot <metamaskbot@users.noreply.github.com>
Co-authored-by: Pedro Pablo Aste Kompen <wachunei@gmail.com>
Co-authored-by: Chris Wilcox <chris.wilcox@consensys.net>
Co-authored-by: abretonc7s <107169956+abretonc7s@users.noreply.github.com>
Co-authored-by: tommasini <46944231+tommasini@users.noreply.github.com>
Co-authored-by: Cal Leung <cleun007@gmail.com>
Co-authored-by: sethkfman <10342624+sethkfman@users.noreply.github.com>
Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>
Co-authored-by: sethkfman <Seth.Kaufman@consensys.net>

* New Crowdin translations by Github Action (#6208)

* New Crowdin translations by Github Action

* PR update

* Revert "PR update"

This reverts commit 39e533a.

---------

Co-authored-by: metamaskbot <metamaskbot@users.noreply.github.com>
Co-authored-by: sethkfman <Seth.Kaufman@consensys.net>

* Stabilise E2e Android tests on pipeline (#6341)

* Modify actions bar function and small tidy ups

* Commit working Smoke tests

* Small changes to tests

* Small fixes

* hide Keyboard

* Fiz sendtoken browserStack

* fix sendToken and CreateWalletAccount

* add smoke tag to lockreset

* wait for no thanks button to exists

* increase wait time for term of use modal.

* fix wallet displayed step

* add time interval to waitFor on no thanks button

* add time interval for waitForDisplayed

* Add  check for terms of use modal loading delay

* Update common-steps.js

Alter CreateWalletTest to also wait for terms of use text

* Add double tap

* update tags

---------

Co-authored-by: Curtis <Curtis.David7@gmail.com>

* [DETOX] Only Run tests with the "smoke" tag in the describe block (#6338)

* add tags to test describe block.

* add regression tags to describe block

* create methods for Smoke & Regression

* update bitrise.yml

* fix lint

* update changelog

* Fix readme typos (#6275)

Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>

* sturdier check (#5866)

* sturdier check

* apply feedback

* apply feedback

* unit test

* check phishing and deeplinks

* feedback

* resolve

* url check

* more tests

---------

Co-authored-by: Curtis David <Curtis.David7@gmail.com>

* Appium/fix reports video failures (#6343)

* try/catch error generating reports

* clean up for reports

* Update SendToken.feature

* delete feature, was renamed

* [e2e] Send ETH to an EOA using Ganache network on Android (#6215)

* Send ETH with Ganache network

* Move Ganache initialization to common steps

* Remove unneeded async

* Update wdio/features/Confirmations/SendEthEOA.feature

Co-authored-by: Curtis David <Curtis.David7@gmail.com>

* Add extra step for closing new modal

* Add tag @confirmations

---------

Co-authored-by: Curtis David <Curtis.David7@gmail.com>

* Fix yarn watch clean (#6339)

* enable proguard for release and QA builds

---------

Co-authored-by: Sylva Elendu <iamsylvaelendu@gmail.com>
Co-authored-by: tommasini <46944231+tommasini@users.noreply.github.com>
Co-authored-by: SamuelSalas <samuel.salas.reyes@gmail.com>
Co-authored-by: Jyoti Puri <jyotipuri@gmail.com>
Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>
Co-authored-by: Mark Stacey <markjstacey@gmail.com>
Co-authored-by: LeoTM <1881059+leotm@users.noreply.github.com>
Co-authored-by: Ariella Vu <20778143+digiwand@users.noreply.github.com>
Co-authored-by: Pedro Pablo Aste Kompen <wachunei@gmail.com>
Co-authored-by: Cal Leung <cleun007@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: metamaskbot <metamaskbot@users.noreply.github.com>
Co-authored-by: Chris Wilcox <chris.wilcox@consensys.net>
Co-authored-by: abretonc7s <107169956+abretonc7s@users.noreply.github.com>
Co-authored-by: MetaMask Bot <37885440+metamaskbot@users.noreply.github.com>
Co-authored-by: yande <110056475+Andepande@users.noreply.github.com>
Co-authored-by: Curtis <Curtis.David7@gmail.com>
Co-authored-by: Brendan Kirby <124314512+bkirb@users.noreply.github.com>
Co-authored-by: witmicko <witmicko@users.noreply.github.com>
Co-authored-by: seaona <54408225+seaona@users.noreply.github.com>
Co-authored-by: Matthew Walsh <matthew.walsh@consensys.net>

* Update Podfile.lock

3 hashes updated after fresh branch checkout and setup

* Revert eth-rpc-errors+4.0.3.patch

Revert manually setting error stack property, no longer needed.

Addressed in Hermes (23/03/23):
facebook/hermes@f2f1a2e

Addressed in this PR/branch via custom Hermes build:
8a5dce5

Fresh build tested in MM mobile browser https://metamask.github.io/test-dapp successful Connect Action, no crash after modal, remains connected.

* native module for goBack on Android

* implement Minimizer Android native module

Android uses native implementation (GoBack class)
iOS uses 'react-native-minimizer' package

creates NativeModules file to populate with all used native modules

* updating gradle as well as a few other files

* Moving create wallet test steps into one method

* fix linting and missing imports

* fixing most smoke tests to run on android.

* add puppeteer to lavamoat allow-scrpits

* update yarn.lock

* allow jest to run

* update pods

* ignore default exports rule

* remove unused nativemodules import

* mock rnfetchblobk mkdir function

* remove caret from rn clipboard

* react-native-keychain version 8.0.0

* fix: hexToBN should not be used with BN argument

* fix: Upgrade testing library versions and resolve jest unit tests (#6425)

* Update snapshots

* Update test IDs

* Explicitly import waitFor for detox

* Add testEnvironment property to jest config

* Add mock for react-native-default-preference

* Stringify mock balance data

* Update Routes

* Fix broken unit tests. Add missing mocks.

* Update testing library and deps versions

* Patch react-native-button to be accessible by default

* Change GetStarted to use getByRole

* Change PaymentMethods to use getByRole

* Use getByRole in Regions tests

* Use getByRole in Wallet tests

* Use getByRole in TransactionReview tests

* Update snapshots

* Fix linting

* Fix snapshots

* Update snapshots

* Remove engine.init from tests

* Update yarn lock

* Remove non testing library upgrades

* Remove last non test library upgrades

* Undo bitrise chnages

* Remove buttonTestID from Box

* Remove true default on accessible prop for Box

* Fix lint issue

* Uncomment reaniamted jest test setup

* Update snapshots

* Fix failing tests

* remove .node-version in favor of .nvmrc

* [hexToBN] allow non string input values

handle non string arguments without throwing error to maintain
the same behavior as before.

centralize imports to make sure all use the same implementation

* fix lint

* remove proptype error log from device screen.

revert this commit once #6458
gets closed

* fix lint

* restore adb server reload when building

* remove unused flow config file

* fix yarn.lock

* fix unit tests

do not use fake timers

* enable project ext var enableHermes

* bring bitrise yaml closer to main

* split the wallet.spec tests into 3 because of flakiness. Also fixed the addressbook test

* fix linting

* fix permissionsystem test.

* update bitrise yml android e2e test commands and device name

* updated bitrise stage for use android_e2e_test

* updated build machine for E2E

* update android tools version

* comment out version tool update

* fix AccountFromToInfoCard unit test by waiting for element query

* update install missing tools and ndk version

* testing library: make use of screen export

* AccountFromToInfoCard: tests: remove unused import

* update install missing step to latest

* recover ndk_version key

* replace deprecated listener removal

* bitrise: download cmake manually with sdkmanager

* bitrise: download cmake manually with sdkmanager

* bitrise: fix android sourcemaps path

* fix sendERC20 test, permissionsystem and request token

* fix lint

* fix add custom network flow.

* Remove old project.ext.react

* Fix snapshots

* fix sendEth test

* bump version

* fix multisig test

* Bump version and update ios build script to fix building main bundle and assets

* Remove @ethereumjs/util (from prev testing)

- was only added/tracked for direct testing
- not used directly in codebase
- resolve: #6220 (review)

metamask@6.6.0
└─┬ @metamask/keyring-controller@1.0.1
  └─┬ @keystonehq/metamask-airgapped-keyring@0.6.1
    ├─┬ @keystonehq/base-eth-keyring@0.7.1
    │ └── @ethereumjs/util@8.0.6
    └─┬ @keystonehq/bc-ur-registry-eth@0.12.1
      └── @ethereumjs/util@8.0.6 deduped

* Bump version

* Ignore GHSA-6w63-h3fj-q4vw advisory

* add get workflow info

* update release announce before task

* Update pod checksums

* bump version to 1125

* Fix lint issues

* Bump cocoapods from 1.12.0 to 1.12.1 in ReadMe

Follow-up: #6512

* Revert app/components/Views/Wallet/index.tsx textStyle changes

Resolve: https://github.com/MetaMask/metamask-mobile/pull/6220/files#r1222167831

Linting still passing locally, no related error/warning

* update build scripts

* remove test assemble

* update name for bitrise emulator

* rename emulator

* update keystore files provided in e2e builds

* update Android Test gradle step

* update emulator type and removed internal keystore

* updated build steps with correct AndroidTest env

* run e2e on mac

* reenabled linux machine on e2e tests

* enable linux on e2e test for android detox

* fix tests to get pass onboarding step on bitrise

* turning off headless mode

* update parameter for headless mode

* revert headless && increase SD card size

* add screenshots for testfailures arg in yaml file

* fix typo in command

* fix metametrics opt in test.

* fix permission system delete wallet test

* readding AndroidTest to build script

* fix flakiness in add customnet test

* fix lint

* increase timeout

* Fix Xcode 14.3.1 MixPanel Linker error

Bump IPHONEOS_DEPLOYMENT_TARGET from 8.0 to 11.0 (min. supported) in mixpanel-iphone Subproject

* Fix Xcode 14.3.1 Branch Linker error

Bump IPHONEOS_DEPLOYMENT_TARGET from 8.0 to 11.0 (min. supported) in branch-ios-sdk Subproject

* Fix Podfile to implement `flipper_config`

Pos fix: #6220 (review)

* Remove stale Podfile comment RE use_frameworks!

* Fix Podfile undefined local var flipper_config

Move to within definition so available within target scope

Resolve: #6220 (review)

* Update Podfile.lock

Note prev hash changes:
- boost
- DoubleConversion
- glog

* Update Xcode proj (doc) format from 12.0-compat to 14.0-compat

* update android_e2e_test to build for QA

* updated device type

* attempting to output screenshot artifacts to bitrise. also tapping by text instead of byLabel on the onboarding screen.

* Revert "attempting to output screenshot artifacts to bitrise. also tapping by text instead of byLabel on the onboarding screen."

This reverts commit 8dfc482.

* native module go back on ios

* fix app minimize

* move RCTMinmizer inside NativeModules folder

* Revert "Fix Xcode 14.3.1 MixPanel Linker error"

This reverts commit 5c162a7.

* Revert "Fix Xcode 14.3.1 Branch Linker error"

This reverts commit 9d3d00d.

* fix android crash on SRP Reveal

* fix wc V2: remove big-integer polyfill

bigint support comes from hermes engine on Android

* NativeModules: ignore eslint default exports

as we will have more native modules exported from there

* return state on latest migration

* address yarn audit for fast-xml-parser

* removing the '#' as it was causing babel issues.

* remove duplicate imports on multisig test

* fix delete wallet test and sign message test.

* enable syncronization by default

* update yarn lock

* fix linting issue

* Revert "enable syncronization by default"

This reverts commit 5b57da6.

* enable unencrypted http on QA builds.

* Revert "enable unencrypted http on QA builds."

This reverts commit a282d28.

* Force bundle for iOS e2e debug

* Bump ruby

* add bitrise debug config for android

* Ignore all logbox errors

* Merge branch 'upgrade/react-native/0.71.6-hermes' into add-android-detox-coverage

* fix tests on android, add yarn script for triggering android tests

* fix bitrise yaml file.

* fix yarn script in package json

* bitrise formatting issue

* fix formatting issue

* spacing issue

* format

* formatting again

* fix spacing

* bitrise

* remove steps for release builds

* spacing

* always accept notifications to prevent flakiness

* remove sign eth and sign messages as they increase testing time.

* fix flakiness

* remove smoke tag and flakiness step in 2 tests

* fix linting

* fix lint

* make browser test more stable.

* small change

* update readme

* update snapshots

* fix jest unit tests

* remove duplicate testing-library reference

* switch smoke tag on flaky test

* fix tests that broke after updating with main.

* increase test runner timeout

* address dev review feedback.

* merged main into detox branch

* fix appium launch times test

* attempt to ignore yarn audit issue

* bump to detox v20.11 + fix assertions

* running tests concurrently to speed up run times

* Revert "running tests concurrently to speed up run times"

This reverts commit 3d805bd.

* remove synchronization in deletewallet test

* wait until the token input box is displayed

* wait for browser elements

* Revert "attempt to ignore yarn audit issue"

This reverts commit 6672230.

* wait for getStarted button to be displayed

---------

Co-authored-by: João Loureiro <joao.loureiro@consensys.net>
Co-authored-by: LeoTM <1881059+leotm@users.noreply.github.com>
Co-authored-by: Cal Leung <cleun007@gmail.com>
Co-authored-by: sethkfman <Seth.Kaufman@consensys.net>
Co-authored-by: sethkfman <10342624+sethkfman@users.noreply.github.com>
Co-authored-by: Sylva Elendu <iamsylvaelendu@gmail.com>
Co-authored-by: tommasini <46944231+tommasini@users.noreply.github.com>
Co-authored-by: SamuelSalas <samuel.salas.reyes@gmail.com>
Co-authored-by: Jyoti Puri <jyotipuri@gmail.com>
Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>
Co-authored-by: Mark Stacey <markjstacey@gmail.com>
Co-authored-by: Ariella Vu <20778143+digiwand@users.noreply.github.com>
Co-authored-by: Pedro Pablo Aste Kompen <wachunei@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: metamaskbot <metamaskbot@users.noreply.github.com>
Co-authored-by: Chris Wilcox <chris.wilcox@consensys.net>
Co-authored-by: abretonc7s <107169956+abretonc7s@users.noreply.github.com>
Co-authored-by: MetaMask Bot <37885440+metamaskbot@users.noreply.github.com>
Co-authored-by: yande <110056475+Andepande@users.noreply.github.com>
Co-authored-by: Brendan Kirby <124314512+bkirb@users.noreply.github.com>
Co-authored-by: witmicko <witmicko@users.noreply.github.com>
Co-authored-by: seaona <54408225+seaona@users.noreply.github.com>
Co-authored-by: Matthew Walsh <matthew.walsh@consensys.net>
Co-authored-by: Tomás SANTOS <tommasini15@gmail.com>
Co-authored-by: João Loureiro <1649425+jpcloureiro@users.noreply.github.com>
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
QA Passed A successful QA run through has been done release-7.3.0 Issue or pull request that will be included in release 7.3.0 team-mobile-platform
Projects
None yet
Development

Successfully merging this pull request may close these issues.