You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within the base Jest namespace augmentation, the line interface InverseAsymmetricMatchers extends Expect {}
says that InverseAsymmetricMatchers extends the augmented Expect interface (which combines base Jest Expect with jest-extended Expect). This means that code such as expect.not.anything() is valid, but this fails at runtime as anything is not implemented in either InverseAsymmetricMatchers.
The text was updated successfully, but these errors were encountered:
Within the base Jest namespace augmentation, the line
interface InverseAsymmetricMatchers extends Expect {}
says that
InverseAsymmetricMatchers
extends the augmentedExpect
interface (which combines base JestExpect
with jest-extendedExpect
). This means that code such asexpect.not.anything()
is valid, but this fails at runtime asanything
is not implemented in either InverseAsymmetricMatchers.The text was updated successfully, but these errors were encountered: