Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmire committed Feb 6, 2025
1 parent 607cf83 commit 5a4f6f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ describe('RpcService', () => {
},
);

describe.only('if the endpoint URL was mocked via Nock, but not the RPC method', () => {
describe('if the endpoint URL was mocked via Nock, but not the RPC method', () => {
it('re-throws the error without retrying the request', async () => {
const endpointUrl = 'https://rpc.example.chain';
nock(endpointUrl)
Expand Down Expand Up @@ -191,7 +191,7 @@ describe('RpcService', () => {
});
});

describe.only('if the endpoint URL was not mocked via Nock', () => {
describe('if the endpoint URL was not mocked via Nock', () => {
it('re-throws the error without retrying the request', async () => {
const service = new RpcService({
fetch,
Expand Down

0 comments on commit 5a4f6f1

Please sign in to comment.