Skip to content
Open
Changes from all commits
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
3 changes: 2 additions & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,12 @@ export function toFailure<T, S>(

const { path, branch } = context
const { type } = struct
const finalValue = typeof value === 'object' ? JSON.stringify(value) : value
const {
refinement,
message = `Expected a value of type \`${type}\`${
refinement ? ` with refinement \`${refinement}\`` : ''
}, but received: \`${print(value)}\``,
}, but received: \`${print(finalValue)}\``,
} = result

return {
Expand Down