Page MenuHomePhabricator

[Cashtab] Remove testnet instantiations and unit tests
ClosedPublic

Authored by emack on Nov 2 2022, 00:47.

Details

Reviewers
bytesofman
Group Reviewers
Restricted Project
Commits
rABC52c7d8f32d9c: [Cashtab] Remove testnet instantiations and unit tests
Summary

As per TG discussion, removing the redundant testnet environment instantiations and testnet specific unit tests.

Test Plan
  • npm test and ensure existing test suites all pass
  • npm start
  • grep -r 'testnet' src/ and ensure the only results are the 'testnet: false' attribute in mockTxBuilderObj.js
  • create a new wallet (to trigger getWalletDetails) and ensure the successful creation of the wallet
  • send a normal XEC tx to this new wallet's receiving address and ensure successful tx

Diff Detail

Repository
rABC Bitcoin ABC
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

emack requested review of this revision.Nov 2 2022, 00:47
bytesofman requested changes to this revision.Nov 5 2022, 04:24

Let's take out all the testnet stuff in this diff, i.e.

grep -r REACT_APP_BCHA_APIS_TEST src/

Also pull that variable out of .env

This revision now requires changes to proceed.Nov 5 2022, 04:24

Removed all instances of REACT_APP_BCHA_APIS_TEST including .env, which subsequently made the REACT_APP_NETWORK param redundant, hence its inclusion in this removal as well.

This revision is now accepted and ready to land.Nov 6 2022, 07:16