Skip to content

Commit

Permalink
fix: fixes json string in env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
VanessaPC committed May 31, 2023
1 parent 221e4e3 commit 4eebed2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration-e2e.yaml
Expand Up @@ -77,7 +77,7 @@ jobs:
UTXO_PROVIDER: 'http'
UTXO_PROVIDER_PARAMS: '{"baseUrl":"http://localhost:4000/utxo"}'
HANDLE_PROVIDER: 'kora-labs'
HANDLE_PROVIDER_PARAMS: '{"serverUrl:"http://localhost:4000","policyId":""}'
HANDLE_PROVIDER_PARAMS: '{"serverUrl":"http://localhost:4000","policyId":""}'
STAKE_POOL_PROVIDER: 'http'
STAKE_POOL_PROVIDER_PARAMS: '{"baseUrl":"http://localhost:4000/stake-pool"}'
STAKE_POOL_PROVIDER_URL: 'http://localhost:4000/stake-pool'
2 changes: 1 addition & 1 deletion packages/e2e/.env.example
Expand Up @@ -29,7 +29,7 @@ UTXO_PROVIDER_PARAMS='{"baseUrl":"http://localhost:4000/utxo"}'
STAKE_POOL_PROVIDER=http
STAKE_POOL_PROVIDER_PARAMS='{"baseUrl":"http://localhost:4000/stake-pool"}'
HANDLE_PROVIDER=kora-labs
HANDLE_PROVIDER_PARAMS='{"serverUrl:"http://localhost:4000","policyId":""}'
HANDLE_PROVIDER_PARAMS='{"serverUrl":"http://localhost:4000","policyId":""}'

# Required by test:ogmios, test:blockfrost
DB_SYNC_CONNECTION_STRING='postgresql://postgres:doNoUseThisSecret!@localhost:5435/cexplorer'
Expand Down
4 changes: 2 additions & 2 deletions packages/e2e/README.md
Expand Up @@ -189,7 +189,7 @@ UTXO_PROVIDER_PARAMS='{"baseUrl":"http://localhost:4000/utxo"}'
STAKE_POOL_PROVIDER=stub
STAKE_POOL_PROVIDER_PARAMS='{"baseUrl":"http://localhost:4000/stake-pool"}'
HANDLE_PROVIDER=kora-labs
HANDLE_PROVIDER_PARAMS='{"serverUrl:"http://localhost:4000","policyId":""}'
HANDLE_PROVIDER_PARAMS='{"serverUrl":"http://localhost:4000","policyId":""}'
```

> :information*source: Notice that KEY_MANAGEMENT_PARAMS \_mnemonic* property is empty, if you leave this empty on the **local network's** e2e tests a new set of random mnemonics will be generated for you, this is the recommended way of setting up e2e tests on this network.
Expand Down Expand Up @@ -247,7 +247,7 @@ ASSET_PROVIDER_PARAMS='{"baseUrl":"http://localhost:4000/asset"}'
CHAIN_HISTORY_PROVIDER=http
CHAIN_HISTORY_PROVIDER_PARAMS='{"baseUrl":"http://localhost:4000/chain-history"}'
HANDLE_PROVIDER=kora-labs
HANDLE_PROVIDER_PARAMS='{"serverUrl:"http://localhost:4000","policyId":""}'
HANDLE_PROVIDER_PARAMS='{"serverUrl":"http://localhost:4000","policyId":""}'
NETWORK_INFO_PROVIDER=http
NETWORK_INFO_PROVIDER_PARAMS='{"baseUrl":"http://localhost:4000/network-info"}'
REWARDS_PROVIDER=http
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/test/web-extension/.env.example
Expand Up @@ -17,7 +17,7 @@ UTXO_PROVIDER_PARAMS='{"baseUrl":"http://localhost:4000/utxo"}'
STAKE_POOL_PROVIDER=stub
STAKE_POOL_PROVIDER_PARAMS='{"baseUrl":"http://localhost:4000/stake-pool"}'
HANDLE_PROVIDER=handleProvider
HANDLE_PROVIDER_PARAMS='{"serverUrl:"http://localhost:4000","policyId":""}'
HANDLE_PROVIDER_PARAMS='{"serverUrl":"http://localhost:4000","policyId":""}'

# Test Environment
NETWORK_ID=0
Expand Down

0 comments on commit 4eebed2

Please sign in to comment.