-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: fix types of few expect
tests
#13361
chore: fix types of few expect
tests
#13361
Conversation
expect
testsexpect
tests
@@ -224,13 +229,16 @@ test('ObjectContaining matches prototype properties', () => { | |||
function Foo() {} | |||
Foo.prototype = prototypeObject; | |||
Foo.prototype.constructor = Foo; | |||
obj = new Foo(); | |||
obj = new (Foo as any)(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here TS complains about implicit any
.
objectContaining({}).asymmetricMatch(null), | ||
objectContaining({}).asymmetricMatch(undefined), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added those simply for completeness.
[{first: objectNotContaining({second: {}})}, {first: {second: {}}}], | ||
[{}, {foo: undefined}], | ||
] as const | ||
).forEach(([sample, received]) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was considering to use test.each
, but it was hard to invent a title for each case. Without unique titles it did not look good. So perhaps forEach
is fine in this file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Summary
Few more
expect
test with fixed types. Looks like there is no overlap with #13360. Just wanted to push these before diving intoeach
types (;Test plan
Green CI.