We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c39ecd commit 62319d1Copy full SHA for 62319d1
tests/utils.ts
@@ -83,7 +83,9 @@ const messagesToReadableStream = (messages: Array<JSONRPCMessage>) => {
83
*/
84
const safeJsonValueArb = fc
85
.json()
86
- .map((value) => JSON.parse(value.replaceAll('__proto__', 'proto')) as JSONValue)
+ .map(
87
+ (value) => JSON.parse(value.replaceAll('__proto__', 'proto')) as JSONValue,
88
+ )
89
.noShrink();
90
91
const safeJsonObjectArb = fc.dictionary(
0 commit comments