Skip to content

Commit

Permalink
AggregateError type allowed for cli (#2499)
Browse files Browse the repository at this point in the history
  • Loading branch information
evantahler committed May 19, 2023
1 parent 21b006c commit 01bf9e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __tests__/core/cli.ts
Expand Up @@ -337,7 +337,7 @@ describe("Core: CLI", () => {
} catch (error) {
if (error instanceof AxiosError) {
expect(error.toString()).toMatch(
/ECONNREFUSED|ECONNRESET|RequestError/
/ECONNREFUSED|ECONNRESET|RequestError|AggregateError/
);
} else throw error;
}
Expand Down

0 comments on commit 01bf9e9

Please sign in to comment.