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 4bf1384 commit f0be13bCopy full SHA for f0be13b
test/tools/unified-spec-runner/match.ts
@@ -265,7 +265,7 @@ export function resultCheck(
265
expect(
266
actual,
267
`Expected actual (${inspect(actual)}) to be an ${Array.isArray(expected) ? 'array' : 'object'} at: ${path.join('')}`
268
- ).to.satisfies(actual =>
+ ).to.satisfy(actual =>
269
Array.isArray(expected) ? Array.isArray(actual) : typeof actual === 'object'
270
);
271
0 commit comments