Prathamesh Musale
816e1623ac
All checks were successful
Unit Tests / test-unit (push) Successful in 2m16s
SDK Tests / sdk_tests_auctions (push) Successful in 14m47s
Integration Tests / test-integration (push) Successful in 2m45s
E2E Tests / test-e2e (push) Successful in 4m23s
Lint / Run golangci-lint (push) Successful in 4m30s
SDK Tests / sdk_tests_nameservice_expiry (push) Successful in 9m4s
SDK Tests / sdk_tests (push) Successful in 9m59s
Part of https://www.notion.so/Rename-laconic2d-to-laconicd-9028d0c020d24d1288e92ebcb773d7a7 Co-authored-by: neeraj <neeraj.rtly@gmail.com> Reviewed-on: cerc-io/laconic2d#27 Co-authored-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to> Co-committed-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to>
29 lines
889 B
Bash
Executable File
29 lines
889 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Forwards all args to yarn on the sdk-test-runner container
|
|
|
|
if [ -n "$CERC_SCRIPT_DEBUG" ]; then
|
|
set -x
|
|
fi
|
|
|
|
yarn_args=("--inspect-brk=8888")
|
|
yarn_args+=("${@:-test}")
|
|
|
|
# Get the key from laconicd
|
|
laconicd_key=$(
|
|
yes | docker compose exec laconicd laconicd keys export alice --keyring-backend test --unarmored-hex --unsafe
|
|
)
|
|
# Set parameters for the test suite
|
|
cosmos_chain_id=laconic_9000-1
|
|
laconicd_rpc_endpoint=http://laconicd:26657
|
|
laconicd_gql_endpoint=http://laconicd:9473/api
|
|
|
|
docker compose exec laconicd sh -c "curl --retry 10 --retry-delay 3 --retry-connrefused http://127.0.0.1:9473/api"
|
|
|
|
# Run tests
|
|
docker compose exec \
|
|
-e COSMOS_CHAIN_ID="$cosmos_chain_id" \
|
|
-e LACONICD_RPC_ENDPOINT="$laconicd_rpc_endpoint" \
|
|
-e LACONICD_GQL_ENDPOINT="$laconicd_gql_endpoint" \
|
|
-e PRIVATE_KEY="$laconicd_key" \
|
|
sdk-test-runner yarn run "${yarn_args[@]}"
|