Skip to content

Commit

Permalink
test(arns): update ArDrive TX ID
Browse files Browse the repository at this point in the history
  • Loading branch information
djwhitt committed Sep 20, 2024
1 parent 42eed0a commit 60d421b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/end-to-end/arns.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ describe('ArNS', function () {

// verify the /ar-io/resolver/:name endpoint
it('Verifying that /ar-io/resolver/:name returns 200 and resolution data', async function () {
const txId = '7czHwMqgYHC3eJrPagyFA03UT4YXIN1um__tpHUXAHE';
const txId = 'rhYmL-2y7NC1SX9TauCNzNK9QmZ3h6Vd4pfCC8fgGcQ';
const res = await axios.get('http://localhost:4000/ar-io/resolver/ardrive');

assert.strictEqual(res.status, 200);
Expand All @@ -124,7 +124,7 @@ describe('ArNS', function () {

// verify the headers are set correctly on the response
it('Verifying that /ar-io/resolver/:name returns 200 and sets the correct headers', async function () {
const txId = '7czHwMqgYHC3eJrPagyFA03UT4YXIN1um__tpHUXAHE';
const txId = 'rhYmL-2y7NC1SX9TauCNzNK9QmZ3h6Vd4pfCC8fgGcQ';
const res = await axios.get('http://localhost:4000/ar-io/resolver/ardrive');

assert.strictEqual(res.headers['x-arns-resolved-id'], txId);
Expand Down

0 comments on commit 60d421b

Please sign in to comment.