Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tegefaulkes committed Dec 2, 2024
1 parent 3c39ecd commit 62319d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ const messagesToReadableStream = (messages: Array<JSONRPCMessage>) => {
*/
const safeJsonValueArb = fc
.json()
.map((value) => JSON.parse(value.replaceAll('__proto__', 'proto')) as JSONValue)
.map(
(value) => JSON.parse(value.replaceAll('__proto__', 'proto')) as JSONValue,
)
.noShrink();

const safeJsonObjectArb = fc.dictionary(
Expand Down

0 comments on commit 62319d1

Please sign in to comment.