Skip to content

Commit

Permalink
feat: Update test rpcUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
DaevMithran committed Jan 3, 2023
1 parent e498193 commit 3903c62
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

- name: Download binary artifact
run: |
mkdir -p ${{ env.RUNNER_BIN_DIR }}
Expand All @@ -46,5 +52,11 @@ jobs:
run: |
bash import-keys.sh
- name: "Clean install dependencies"
run: npm ci

- name: "Run npm build"
run: npm run build

- name: Run Tests
run: npm test
2 changes: 1 addition & 1 deletion tests/testutils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const faucet = {

export const exampleCheqdNetwork = {
network: 'testnet',
rpcUrl: 'https://rpc.cheqd.network',
rpcUrl: 'http://localhost:26657',
gasPrice: GasPrice.fromString( `50${faucet.minimalDenom}` )
}

Expand Down

0 comments on commit 3903c62

Please sign in to comment.