From 2269c6d0fea087053dc4babb7beb6bb8a35db37b Mon Sep 17 00:00:00 2001 From: mroz Date: Wed, 3 Aug 2022 08:49:51 +0200 Subject: [PATCH] feat(tests): use connect v9 in tests --- tests/connect_tests/connect_tests.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/connect_tests/connect_tests.sh b/tests/connect_tests/connect_tests.sh index b947eaf5bf..c8c300663f 100755 --- a/tests/connect_tests/connect_tests.sh +++ b/tests/connect_tests/connect_tests.sh @@ -1,24 +1,24 @@ #!/usr/bin/env bash -# Cloning connect repository and running the tests from there +# Cloning trezor-suite repository and running connect tests from there FILE_DIR="$(dirname "${0}")" cd ${FILE_DIR} -CONNECT_DIR="connect" +TREZOR_SUITE_DIR="trezor-suite" # For quicker local usage, do not cloning connect repo if it already exists -if [[ ! -d "${CONNECT_DIR}" ]] +if [[ ! -d "${TREZOR_SUITE_DIR}" ]] then - git clone https://github.com/trezor/connect.git - cd ${CONNECT_DIR} + git clone https://github.com/trezor/trezor-suite.git + cd ${TREZOR_SUITE_DIR} git submodule update --init --recursive else - cd ${CONNECT_DIR} + cd ${TREZOR_SUITE_DIR} fi echo "Changing 'localhost' to '127.0.0.1' in websocket client as a workaround for CI servers" -sed -i 's/localhost/127.0.0.1/g' ./tests/websocket-client.js +sed -i 's/localhost/127.0.0.1/g' ./packages/integration-tests/websocket-client.js # Taking an optional script argument with emulator version if [ ! -z "${1}" ] @@ -30,4 +30,4 @@ fi echo "Will be running with ${EMU_VERSION} emulator" # Using -d flag to disable docker, as tenv is already running on the background -nix-shell --run "yarn && tests/run.sh -d -f ${EMU_VERSION} -s 'yarn test:integration methods'" +nix-shell --run "yarn && yarn build:libs && ./docker/docker-connect-test.sh node -p methods -d -f ${EMU_VERSION}"