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 449c9cd commit 60ce965Copy full SHA for 60ce965
tests/ping-pong.js
@@ -116,7 +116,9 @@ function test() {
116
let expectedStr = `${headerStr},${staticNonceStr}`;
117
let messageStr = messageBytes.toString();
118
if (expectedStr !== messageStr) {
119
- throw new Error('complete messages did not match');
+ throw new Error(
120
+ `complete messages did not match: ${expectedStr} !== ${messageStr}`,
121
+ );
122
}
123
124
0 commit comments