Skip to content

Commit

Permalink
test: skip flaky rest test (#10234)
Browse files Browse the repository at this point in the history
  • Loading branch information
almeidx committed Apr 27, 2024
1 parent b79b706 commit dc8f149
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/rest/__tests__/RequestHandler.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,8 @@ test('malformedRequest', async () => {
await expect(api.get('/malformedRequest')).rejects.toBeInstanceOf(DiscordAPIError);
});

test('abort', async () => {
// TODO: flaky due to changes in undici
test.skip('abort', async () => {
mockPool
.intercept({
path: genPath('/abort'),
Expand Down

0 comments on commit dc8f149

Please sign in to comment.