From cc2c94cd1c78aa637138bbcc2c01740abbbe5b1d Mon Sep 17 00:00:00 2001 From: Michael Shaw Date: Thu, 2 Feb 2023 13:54:24 -0500 Subject: [PATCH] documentation did not match script --- tests/sdk_tests/docker-compose.yml | 2 +- tests/sdk_tests/run-all-tests.sh | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/sdk_tests/docker-compose.yml b/tests/sdk_tests/docker-compose.yml index be77f4fe..f9ed9ea1 100644 --- a/tests/sdk_tests/docker-compose.yml +++ b/tests/sdk_tests/docker-compose.yml @@ -4,7 +4,7 @@ services: image: cerc-io/laconicd:local-test environment: - TEST_AUCTION_ENABLED=true - - TEST_NAMESERVICE_EXPIRY=true + - TEST_REGISTRY_EXPIRY=true command: ["sh", "/docker-entrypoint-scripts.d/create-fixturenet.sh"] volumes: - ../../init.sh:/docker-entrypoint-scripts.d/create-fixturenet.sh diff --git a/tests/sdk_tests/run-all-tests.sh b/tests/sdk_tests/run-all-tests.sh index 29362b09..dae8426f 100755 --- a/tests/sdk_tests/run-all-tests.sh +++ b/tests/sdk_tests/run-all-tests.sh @@ -11,10 +11,8 @@ laconicd_gql_endpoint=http://laconicd:9473/api # Run tests docker network inspect sdk_tests_default sleep 30s -docker logs laconicd -docker compose exec laconicd sh -c "curl http://127.0.0.1:9473/api" -docker compose exec laconicd sh -c "curl http://localhost:9473/api" #docker compose exec sdk-test-runner sh -c "COSMOS_CHAIN_ID=${cosmos_chain_id} LACONICD_REST_ENDPOINT=${laconicd_rest_endpoint} LACONICD_GQL_ENDPOINT=${laconicd_gql_endpoint} PRIVATE_KEY=${laconicd_key} yarn test" #docker compose exec sdk-test-runner sh -c "COSMOS_CHAIN_ID=${cosmos_chain_id} LACONICD_REST_ENDPOINT=${laconicd_rest_endpoint} LACONICD_GQL_ENDPOINT=${laconicd_gql_endpoint} PRIVATE_KEY=${laconicd_key} yarn test:auctions" docker compose exec sdk-test-runner sh -c "COSMOS_CHAIN_ID=${cosmos_chain_id} LACONICD_REST_ENDPOINT=${laconicd_rest_endpoint} LACONICD_GQL_ENDPOINT=${laconicd_gql_endpoint} PRIVATE_KEY=${laconicd_key} yarn test:nameservice-expiry" +docker logs sdk_tests-laconicd-1