Skip to content

Add binary source and destination settings #122

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 11, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix webpack warning about missing .message property
  • Loading branch information
code-asher committed Aug 11, 2023
commit d7b13f0e08740bcfecd6396dd5232f337dae15ad
2 changes: 1 addition & 1 deletion src/error.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,6 @@ it("falls back with different error", async () => {
} catch (error) {
const wrapped = await CertificateError.maybeWrap(error, "1", logger)
expect(wrapped instanceof CertificateError).toBeFalsy()
expect(wrapped.message).toMatch(/failed with status code 500/)
expect((wrapped as Error).message).toMatch(/failed with status code 500/)
}
})