From b0c3074eed176fd27a1a157dfe9f7337f19bc686 Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 13:47:27 -0600 Subject: [PATCH 01/16] debug circle --- .circleci/config.yml | 8 ++++++-- .../cosmos-e2e-ibc-deposit/src/index.test.ts | 4 +++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 505d8e5a..68a419c6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,8 +16,12 @@ jobs: steps: - run: sudo apt-get install libudev-dev libusb-dev libusb-1.0 - checkout - - setup_remote_docker: - docker_layer_caching: true +# - setup_remote_docker: +# docker_layer_caching: true + - run: + command: "ls" + - run: + command: "yarn" - run: command: "make && make test" workflows: diff --git a/e2e/sdk-tendermint-custom/cosmos-e2e-ibc-deposit/src/index.test.ts b/e2e/sdk-tendermint-custom/cosmos-e2e-ibc-deposit/src/index.test.ts index 2df5b3c1..fcd7cc95 100644 --- a/e2e/sdk-tendermint-custom/cosmos-e2e-ibc-deposit/src/index.test.ts +++ b/e2e/sdk-tendermint-custom/cosmos-e2e-ibc-deposit/src/index.test.ts @@ -414,7 +414,9 @@ describe(' - e2e test '+BLOCKCHAIN+' ibc deposit - ', function() { let invocationView = await app.getInvocation(invocationId) log(tag,"invocationView3: (VIEW) ",invocationView) expect(invocationView).toBeDefined(); - expect(invocationView.state).toBe('broadcasted'); + if(!noBroadcast){ + expect(invocationView.state).toBe('broadcasted'); + } }); it('Closes Websocket ', async function() { From bb614723b1cdf47e860b15fdd6e6164f2699aed0 Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 13:58:51 -0600 Subject: [PATCH 02/16] debug circle --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 238cc4f4..84b0aeab 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "packages": [ "modules/**/**/*", "services/**/*", - "apps/**/*" + "apps/**/*", + "e2e/**/*" ], "version": "independent" }, From 35a6cd17e37d6a584345f27e0d3dfb65cbc22623 Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 14:10:44 -0600 Subject: [PATCH 03/16] cache --- .circleci/config.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 68a419c6..505d8e5a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,12 +16,8 @@ jobs: steps: - run: sudo apt-get install libudev-dev libusb-dev libusb-1.0 - checkout -# - setup_remote_docker: -# docker_layer_caching: true - - run: - command: "ls" - - run: - command: "yarn" + - setup_remote_docker: + docker_layer_caching: true - run: command: "make && make test" workflows: From 9c748b8442292f5b69d012a5cc8b156c302c3afe Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 14:11:40 -0600 Subject: [PATCH 04/16] circleci --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 505d8e5a..942de338 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,6 +16,9 @@ jobs: steps: - run: sudo apt-get install libudev-dev libusb-dev libusb-1.0 - checkout + - run: + name: "test environment variables" + command: echo $WALLET_TEST - setup_remote_docker: docker_layer_caching: true - run: From 47bfe1dfe91464a9ef0bec1263ef73ff20458f31 Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 14:21:37 -0600 Subject: [PATCH 05/16] debug test seed --- .circleci/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 942de338..41065f0d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,6 @@ jobs: - checkout - run: name: "test environment variables" - command: echo $WALLET_TEST - setup_remote_docker: docker_layer_caching: true - run: From 8effad7067af03160fedf1a3600295b114bfc285 Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 14:30:35 -0600 Subject: [PATCH 06/16] debug circleci --- .circleci/config.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 41065f0d..505d8e5a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,8 +16,6 @@ jobs: steps: - run: sudo apt-get install libudev-dev libusb-dev libusb-1.0 - checkout - - run: - name: "test environment variables" - setup_remote_docker: docker_layer_caching: true - run: From 8ba5b0389ff41a807bd71c15ab114d2bf1d05d2c Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 14:52:00 -0600 Subject: [PATCH 07/16] debug e2e circle --- e2e/sdk-support/abort-tx/src/index.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/e2e/sdk-support/abort-tx/src/index.ts b/e2e/sdk-support/abort-tx/src/index.ts index 82c1fc29..0f2d56a0 100644 --- a/e2e/sdk-support/abort-tx/src/index.ts +++ b/e2e/sdk-support/abort-tx/src/index.ts @@ -67,10 +67,8 @@ let BLOCKCHAIN = 'ethereum' let ASSET = 'ETH' let MIN_BALANCE = process.env['MIN_BALANCE_ETH'] || "0.004" let TEST_AMOUNT = process.env['TEST_AMOUNT'] || "0.0001" -let spec = process.env['URL_PIONEER_SPEC'] -let NO_BROADCAST = process.env['E2E_BROADCAST'] || true -let wss = process.env['URL_PIONEER_SOCKET'] -let FAUCET_RUNE_ADDRESS = process.env['FAUCET_RUNE_ADDRESS'] || 'thor1wy58774wagy4hkljz9mchhqtgk949zdwwe80d5' +let spec = process.env['URL_PIONEER_SPEC'] || 'https://pioneers.dev/spec/swagger.json' +let wss = process.env['URL_PIONEER_SOCKET'] || 'wss://pioneers.dev' let FAUCET_BCH_ADDRESS = process.env['FAUCET_RUNE_ADDRESS'] || 'qrsggegsd2msfjaueml6n6vyx6awfg5j4qmj0u89hj' let noBroadcast = true From 022cee3795a1deb9d98a57abc83f7debdb754869 Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 14:58:00 -0600 Subject: [PATCH 08/16] debug e2e circle --- e2e/sdk-support/abort-tx/src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/e2e/sdk-support/abort-tx/src/index.ts b/e2e/sdk-support/abort-tx/src/index.ts index 0f2d56a0..e0d3dcc5 100644 --- a/e2e/sdk-support/abort-tx/src/index.ts +++ b/e2e/sdk-support/abort-tx/src/index.ts @@ -71,6 +71,9 @@ let spec = process.env['URL_PIONEER_SPEC'] || 'https://pioneers.dev/spec/swagger let wss = process.env['URL_PIONEER_SOCKET'] || 'wss://pioneers.dev' let FAUCET_BCH_ADDRESS = process.env['FAUCET_RUNE_ADDRESS'] || 'qrsggegsd2msfjaueml6n6vyx6awfg5j4qmj0u89hj' +log.info(TAG+" spec: ",spec) +log.info(TAG+" wss: ",wss) + let noBroadcast = true const test_service = async function () { From f8acb0b0135af5c59b32d6d7338a0e6d4ee2a7b5 Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 15:05:19 -0600 Subject: [PATCH 09/16] debug e2e circle --- e2e/sdk-support/abort-tx/src/index.test.ts | 6 ++---- e2e/sdk-support/abort-tx/src/index.ts | 7 ------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/e2e/sdk-support/abort-tx/src/index.test.ts b/e2e/sdk-support/abort-tx/src/index.test.ts index fc92caab..ce4bc75c 100644 --- a/e2e/sdk-support/abort-tx/src/index.test.ts +++ b/e2e/sdk-support/abort-tx/src/index.test.ts @@ -62,10 +62,8 @@ let BLOCKCHAIN = 'ethereum' let ASSET = 'ETH' let MIN_BALANCE = process.env['MIN_BALANCE_ETH'] || "0.0002" let TEST_AMOUNT = process.env['TEST_AMOUNT'] || "0.0001" -let spec = process.env['URL_PIONEER_SPEC'] -let NO_BROADCAST = process.env['E2E_BROADCAST'] || true -let wss = process.env['URL_PIONEER_SOCKET'] -let FAUCET_RUNE_ADDRESS = process.env['FAUCET_RUNE_ADDRESS'] || 'thor1wy58774wagy4hkljz9mchhqtgk949zdwwe80d5' +let spec = process.env['URL_PIONEER_SPEC'] || 'https://pioneers.dev/spec/swagger.json' +let wss = process.env['URL_PIONEER_SOCKET'] || 'wss://pioneers.dev' let FAUCET_BCH_ADDRESS = process.env['FAUCET_RUNE_ADDRESS'] || 'qrsggegsd2msfjaueml6n6vyx6awfg5j4qmj0u89hj' describe(' - e2e test '+TAG, function() { diff --git a/e2e/sdk-support/abort-tx/src/index.ts b/e2e/sdk-support/abort-tx/src/index.ts index e0d3dcc5..19f012e0 100644 --- a/e2e/sdk-support/abort-tx/src/index.ts +++ b/e2e/sdk-support/abort-tx/src/index.ts @@ -47,7 +47,6 @@ let midgard = require("@pioneer-platform/midgard-client") let coincap = require("@pioneer-platform/coincap") let { - supportedBlockchains, baseAmountToNative, nativeToBaseAmount, } = require("@pioneer-platform/pioneer-coins") @@ -57,9 +56,6 @@ const { sendPairingCode, getContext, getWallets, - buildTransaction, - approveTransaction, - broadcastTransaction, cancelTransaction } = require('@pioneer-platform/pioneer-app-e2e') @@ -71,9 +67,6 @@ let spec = process.env['URL_PIONEER_SPEC'] || 'https://pioneers.dev/spec/swagger let wss = process.env['URL_PIONEER_SOCKET'] || 'wss://pioneers.dev' let FAUCET_BCH_ADDRESS = process.env['FAUCET_RUNE_ADDRESS'] || 'qrsggegsd2msfjaueml6n6vyx6awfg5j4qmj0u89hj' -log.info(TAG+" spec: ",spec) -log.info(TAG+" wss: ",wss) - let noBroadcast = true const test_service = async function () { From 3e78efa605c60000cef4c3cab1569b7067037ed9 Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 15:28:11 -0600 Subject: [PATCH 10/16] debug test --- .circleci/config.yml | 2 +- e2e/sdk-support/abort-tx/src/index.ts | 2 -- scripts/test.sh | 31 +++++++++++++++------------ 3 files changed, 18 insertions(+), 17 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 505d8e5a..dd4adf72 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,7 +19,7 @@ jobs: - setup_remote_docker: docker_layer_caching: true - run: - command: "make && make test" + command: "make && make test debug=true" workflows: version: 2 build-master: diff --git a/e2e/sdk-support/abort-tx/src/index.ts b/e2e/sdk-support/abort-tx/src/index.ts index 19f012e0..10753d1b 100644 --- a/e2e/sdk-support/abort-tx/src/index.ts +++ b/e2e/sdk-support/abort-tx/src/index.ts @@ -67,8 +67,6 @@ let spec = process.env['URL_PIONEER_SPEC'] || 'https://pioneers.dev/spec/swagger let wss = process.env['URL_PIONEER_SOCKET'] || 'wss://pioneers.dev' let FAUCET_BCH_ADDRESS = process.env['FAUCET_RUNE_ADDRESS'] || 'qrsggegsd2msfjaueml6n6vyx6awfg5j4qmj0u89hj' -let noBroadcast = true - const test_service = async function () { let tag = TAG + " | test_service | " try { diff --git a/scripts/test.sh b/scripts/test.sh index 428fae97..8e10b0b9 100644 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -11,12 +11,13 @@ coin=$3 # DEV move (dont use jest) if [[ $2 = 'true' ]] then - cd e2e/sdk-transfers/thorchain-e2e-transfer && npm run dev && cd ../../../ &&/ - cd e2e/sdk-transfers/ethereum-e2e-transfer && npm run dev && cd ../../../ &&/ -# cd e2e/sdk-support/rbf-ethereum && npm run dev && cd ../../../ &&/ - cd e2e/sdk-support/abort-tx && npm run dev && cd ../../../ &&/ - cd e2e/sdk-support/forget-user && npm run dev && cd ../../../ &&/ - cd e2e/sdk-support/querykey-migration && npm run dev && cd ../../../ &&/ + cd e2e/sdk-support/abort-tx && npm run dev && cd ../../../ +# cd e2e/sdk-transfers/thorchain-e2e-transfer && npm run dev && cd ../../../ &&/ +# cd e2e/sdk-transfers/ethereum-e2e-transfer && npm run dev && cd ../../../ &&/ +## cd e2e/sdk-support/rbf-ethereum && npm run dev && cd ../../../ &&/ +# cd e2e/sdk-support/abort-tx && npm run dev && cd ../../../ &&/ +# cd e2e/sdk-support/forget-user && npm run dev && cd ../../../ &&/ +# cd e2e/sdk-support/querykey-migration && npm run dev && cd ../../../ &&/ # cd e2e/sdk-support/context-switching && npm run dev && cd ../../../ &&/ # cd e2e/sdk-swaps/bitcoincash-e2e-swap && npm run dev && cd ../../../ &&/ # cd e2e/sdk-swaps/etherum-e2e-swap && npm run dev && cd ../../../ &&/ @@ -31,14 +32,16 @@ else # cd e2e/sdk-support/forget-user && npm run test && cd ../../../ &&/ # cd e2e/sdk-support/querykey-migration && npm run test && cd ../../../ &&/ # cd e2e/sdk-support/rbf-ethereum && npm run test && cd ../../../ &&/ - #transfers - cd e2e/sdk-transfers/cosmos-e2e-transfer && npm run test && cd ../../../ &&/ - #ibc depsoit - cd e2e/sdk-tendermint-custom/cosmos-e2e-ibc-deposit && npm run test && cd ../../../ &&/ - #osmosis - cd e2e/sdk-tendermint-custom/osmosis-e2e-swap && npm run test && cd ../../../ &&/ - cd e2e/sdk-tendermint-custom/osmosis-e2e-delegate && npm run test && cd ../../../ &&/ - cd e2e/sdk-tendermint-custom/osmosis-e2e-lp-add && npm run test && cd ../../../ + +# #transfers +# cd e2e/sdk-transfers/cosmos-e2e-transfer && npm run test && cd ../../../ &&/ +# #ibc depsoit +# cd e2e/sdk-tendermint-custom/cosmos-e2e-ibc-deposit && npm run test && cd ../../../ &&/ +# #osmosis +# cd e2e/sdk-tendermint-custom/osmosis-e2e-swap && npm run test && cd ../../../ &&/ +# cd e2e/sdk-tendermint-custom/osmosis-e2e-delegate && npm run test && cd ../../../ &&/ +# cd e2e/sdk-tendermint-custom/osmosis-e2e-lp-add && npm run test && cd ../../../ + #remember last entry can NOT have &&/ #thorchain offline TODO re-enable From 4f70b14df5700eae5b61d6bd06483b24ae14256e Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 15:38:04 -0600 Subject: [PATCH 11/16] debug test --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index 8e10b0b9..dd686f8d 100644 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -26,7 +26,7 @@ then # Default mode else #support functions - cd e2e/sdk-support/abort-tx && npm run test && cd ../../../ &&/ + cd e2e/sdk-support/abort-tx && npm run dev && cd ../../../ &&/ # TODO addmeback # cd e2e/sdk-support/context-switching && npm run test && cd ../../../ &&/ # cd e2e/sdk-support/forget-user && npm run test && cd ../../../ &&/ From 070d55af7cf5330a0a8a83538c6b04d552e8229b Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 15:50:21 -0600 Subject: [PATCH 12/16] missing packages --- modules/pioneer/pioneer-invoke/package.json | 1 + modules/pioneer/pioneer-sdk/package.json | 1 + 2 files changed, 2 insertions(+) diff --git a/modules/pioneer/pioneer-invoke/package.json b/modules/pioneer/pioneer-invoke/package.json index ba4ce978..c972b88a 100644 --- a/modules/pioneer/pioneer-invoke/package.json +++ b/modules/pioneer/pioneer-invoke/package.json @@ -15,6 +15,7 @@ }, "dependencies": { "@pioneer-platform/loggerdog": "^8.1.8", + "@pioneer-platform/pioneer-types": "^8.1.32", "@pioneer-platform/signing": "^8.1.8", "@types/node": "^13.13.14", "axios": "^0.19.2", diff --git a/modules/pioneer/pioneer-sdk/package.json b/modules/pioneer/pioneer-sdk/package.json index 395b50cb..23503082 100644 --- a/modules/pioneer/pioneer-sdk/package.json +++ b/modules/pioneer/pioneer-sdk/package.json @@ -22,6 +22,7 @@ "dependencies": { "@pioneer-platform/pioneer-coins": "^8.1.24", "@pioneer-platform/pioneer-events": "^8.1.20", + "@pioneer-platform/pioneer-types": "^8.1.32", "@pioneer-platform/pioneer-xchain-client": "^8.1.26", "bignumber.js": "^9.0.1", "dotenv": "^8.2.0", From 62309dd0303d8f693b95b88ce3a130920701d34c Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 16:02:03 -0600 Subject: [PATCH 13/16] try test --- .circleci/config.yml | 2 +- scripts/test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index dd4adf72..505d8e5a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,7 +19,7 @@ jobs: - setup_remote_docker: docker_layer_caching: true - run: - command: "make && make test debug=true" + command: "make && make test" workflows: version: 2 build-master: diff --git a/scripts/test.sh b/scripts/test.sh index dd686f8d..8e10b0b9 100644 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -26,7 +26,7 @@ then # Default mode else #support functions - cd e2e/sdk-support/abort-tx && npm run dev && cd ../../../ &&/ + cd e2e/sdk-support/abort-tx && npm run test && cd ../../../ &&/ # TODO addmeback # cd e2e/sdk-support/context-switching && npm run test && cd ../../../ &&/ # cd e2e/sdk-support/forget-user && npm run test && cd ../../../ &&/ From 598d37ae30816d60f54cae05b31416aa5604c9e3 Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 16:02:24 -0600 Subject: [PATCH 14/16] try test --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index 8e10b0b9..b8ebeb83 100644 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -26,7 +26,7 @@ then # Default mode else #support functions - cd e2e/sdk-support/abort-tx && npm run test && cd ../../../ &&/ + cd e2e/sdk-support/abort-tx && npm run test && cd ../../../ # TODO addmeback # cd e2e/sdk-support/context-switching && npm run test && cd ../../../ &&/ # cd e2e/sdk-support/forget-user && npm run test && cd ../../../ &&/ From a4076de2e62dd7f978775708271137c6803a4143 Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 16:06:29 -0600 Subject: [PATCH 15/16] 1 more test --- scripts/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/test.sh b/scripts/test.sh index b8ebeb83..4d5b2b6f 100644 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -26,7 +26,7 @@ then # Default mode else #support functions - cd e2e/sdk-support/abort-tx && npm run test && cd ../../../ + cd e2e/sdk-support/abort-tx && npm run test && cd ../../../ &&/ # TODO addmeback # cd e2e/sdk-support/context-switching && npm run test && cd ../../../ &&/ # cd e2e/sdk-support/forget-user && npm run test && cd ../../../ &&/ @@ -34,7 +34,7 @@ else # cd e2e/sdk-support/rbf-ethereum && npm run test && cd ../../../ &&/ # #transfers -# cd e2e/sdk-transfers/cosmos-e2e-transfer && npm run test && cd ../../../ &&/ + cd e2e/sdk-transfers/cosmos-e2e-transfer && npm run test && cd ../../../ # #ibc depsoit # cd e2e/sdk-tendermint-custom/cosmos-e2e-ibc-deposit && npm run test && cd ../../../ &&/ # #osmosis From 7eaddd870728907dfbb7e27d3e8094d253483b9b Mon Sep 17 00:00:00 2001 From: highlander Date: Fri, 27 Aug 2021 16:10:42 -0600 Subject: [PATCH 16/16] all the tests --- scripts/test.sh | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/scripts/test.sh b/scripts/test.sh index 4d5b2b6f..077de848 100644 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -11,7 +11,12 @@ coin=$3 # DEV move (dont use jest) if [[ $2 = 'true' ]] then - cd e2e/sdk-support/abort-tx && npm run dev && cd ../../../ + cd e2e/sdk-support/abort-tx && npm run dev && cd ../../../ &&/ + cd e2e/sdk-transfers/cosmos-e2e-transfer && npm run dev && cd ../../../ &&/ + cd e2e/sdk-tendermint-custom/cosmos-e2e-ibc-deposit && npm run dev && cd ../../../ &&/ + cd e2e/sdk-tendermint-custom/osmosis-e2e-swap && npm run dev && cd ../../../ &&/ + cd e2e/sdk-tendermint-custom/osmosis-e2e-delegate && npm run dev && cd ../../../ &&/ + cd e2e/sdk-tendermint-custom/osmosis-e2e-lp-add && npm run dev && cd ../../../ # cd e2e/sdk-transfers/thorchain-e2e-transfer && npm run dev && cd ../../../ &&/ # cd e2e/sdk-transfers/ethereum-e2e-transfer && npm run dev && cd ../../../ &&/ ## cd e2e/sdk-support/rbf-ethereum && npm run dev && cd ../../../ &&/ @@ -34,13 +39,13 @@ else # cd e2e/sdk-support/rbf-ethereum && npm run test && cd ../../../ &&/ # #transfers - cd e2e/sdk-transfers/cosmos-e2e-transfer && npm run test && cd ../../../ -# #ibc depsoit -# cd e2e/sdk-tendermint-custom/cosmos-e2e-ibc-deposit && npm run test && cd ../../../ &&/ -# #osmosis -# cd e2e/sdk-tendermint-custom/osmosis-e2e-swap && npm run test && cd ../../../ &&/ -# cd e2e/sdk-tendermint-custom/osmosis-e2e-delegate && npm run test && cd ../../../ &&/ -# cd e2e/sdk-tendermint-custom/osmosis-e2e-lp-add && npm run test && cd ../../../ + cd e2e/sdk-transfers/cosmos-e2e-transfer && npm run test && cd ../../../ &&/ + #ibc depsoit + cd e2e/sdk-tendermint-custom/cosmos-e2e-ibc-deposit && npm run test && cd ../../../ &&/ + #osmosis + cd e2e/sdk-tendermint-custom/osmosis-e2e-swap && npm run test && cd ../../../ &&/ + cd e2e/sdk-tendermint-custom/osmosis-e2e-delegate && npm run test && cd ../../../ &&/ + cd e2e/sdk-tendermint-custom/osmosis-e2e-lp-add && npm run test && cd ../../../ #remember last entry can NOT have &&/