Skip to content

Commit

Permalink
Failing test for #528
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Sep 28, 2023
1 parent 98d76e6 commit 577dd4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/retry.ts
Expand Up @@ -152,7 +152,7 @@ test('doesn\'t retry on 413 without Retry-After header', async t => {
await server.close();
});

test('respect number of retries', async t => {
test.failing('respect number of retries', async t => {
let requestCount = 0;

const server = await createHttpTestServer();
Expand All @@ -171,7 +171,7 @@ test('respect number of retries', async t => {
message: /Request Timeout/,
},
);
t.is(requestCount, 3);
t.is(requestCount, 4);

await server.close();
});
Expand Down

0 comments on commit 577dd4c

Please sign in to comment.