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 30a4d63 commit 19932e4Copy full SHA for 19932e4
test/tools/unified-spec-runner/match.ts
@@ -263,7 +263,9 @@ export function resultCheck(
263
}
264
265
if (typeof actual !== 'object') {
266
- expect.fail(`Expected actual value to be an object at: ${path.join('')}`);
+ expect.fail(
267
+ `Expected actual value (${inspect(actual)}) to be an object at: ${path.join('')}`
268
+ );
269
270
271
const expectedEntries = Object.entries(expected);
0 commit comments