Skip to content

Commit

Permalink
fix(tests): changing Solana fulfilled address and removing name zone …
Browse files Browse the repository at this point in the history
…variable (#788)
  • Loading branch information
geekbrother authored Sep 23, 2024
1 parent 84439e5 commit 8ecb401
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/sub-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,9 @@ jobs:
env:
PROJECT_ID: ${{ secrets.PROJECT_ID }}
RPC_URL: ${{ inputs.stage-url }}
NAMES_MAIN_ZONE: ${{ secrets.NAMES_MAIN_ZONE }}
- name: Yarn Integration Tests
if: ${{ inputs.stage == 'prod' }}
run: yarn integration
env:
PROJECT_ID: ${{ secrets.PROJECT_ID }}
RPC_URL: ${{ inputs.stage-url }}
NAMES_MAIN_ZONE: ${{ secrets.NAMES_MAIN_ZONE }}

2 changes: 1 addition & 1 deletion integration/balance.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ describe('Account balance', () => {
const { baseUrl, projectId, httpClient } = getTestSetup();

const fulfilled_eth_address = '0xf3ea39310011333095CFCcCc7c4Ad74034CABA63'
const fulfilled_solana_address = 'ThDDM64EYViLM1trknxJTBcuWRh2eGuecLG3sVj8VV7'
const fulfilled_solana_address = '5PUrktzVvJPNFYpxNzFkGp4a5Dcj1Dduif5dAzuUUhsr'

const empty_eth_address = '0x5b6262592954B925B510651462b63ddEbcc22eaD'
const empty_solana_address = '7ar3r6Mau1Bk7pGLWHCMj1C1bk2eCDwGWTP77j9MXTtd'
Expand Down
2 changes: 1 addition & 1 deletion integration/names.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('Account profile names', () => {
// Generate a random name
const randomString = Array.from({ length: 10 },
() => (Math.random().toString(36)[2] || '0')).join('')
const zone = process.env.NAMES_MAIN_ZONE;
const zone = 'reown.id';
const name = `integration-test-${randomString}.${zone}`;

// Create a message to sign
Expand Down

0 comments on commit 8ecb401

Please sign in to comment.