Skip to content

Commit

Permalink
fix(graphql-e2e-test): remove obsolete name service tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lzpap committed Aug 27, 2024
1 parent 70094fe commit a9f3499
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions sdk/graphql-transport/test/compatability.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -723,26 +723,4 @@ describe('GraphQL IotaClient compatibility', () => {

expect(graphql).toEqual(rpc);
});

test('resolveNameServiceAddress', async () => {
const rpc = await toolbox.client.resolveNameServiceAddress({
name: 'test.iota',
});
const graphql = await graphQLClient!.resolveNameServiceAddress({
name: 'test.iota',
});

expect(graphql).toEqual(rpc);
});

test('resolveNameServiceNames', async () => {
const rpc = await toolbox.client.resolveNameServiceNames({
address: toolbox.address(),
});
const graphql = await graphQLClient!.resolveNameServiceNames({
address: toolbox.address(),
});

expect(graphql).toEqual(rpc);
});
});

0 comments on commit a9f3499

Please sign in to comment.