-
Notifications
You must be signed in to change notification settings - Fork 405
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
ToBeEmpty assertion in jest-dom is also used in jest-extended #216
Comments
I noticed this a while ago and even brought it up as an issue with jest: jestjs/jest#6243 I could see us providing an alias as you suggest. |
I've also encountered this issue today after introducing
This depends on the import order. In my case, it's Another way to solve it is to actually support other "empty" checks, similar to what lodash considers "empty". As As a workaround, one can write a custom, third |
I honestly don't know how to solve this properly. IMO it lies on the jest side of things. Can you all at least comment in the linked issue in jest (jestjs/jest#6243) so that this gets some visibility: I doubt it could have a quick fix, but this is something they should address. and there are mentions there of proposed solutions and maybe even a workaround? |
Though I'd be open to add an alias |
Adding an alias like |
To be clear, we do not have the same function name that jest has. The clash is with another lib that also extends jest's custom matchers as we do, with their own, that are not related to checks to the DOM. As for the breaking change approach, the impact of this issue so far has been proven fairly low. Few people have reported it. So I'd rather start with offering the alias, maybe even encouraging it and possibly even adding a deprecation warning in the console about it, and then in a subsequent breaking change release we fully remove it. That way we give folks the opportunity to learn about the upcoming change. @testing-library/core-maintainers what do you think? |
I agree with you @gnapse! |
If you guys wouldn't mind, I'd volunteer to add the alias and the deprecation warning. |
Go for it @DanielaValero |
Closing this as it is solved by the new preferred alternative matcher |
Describe the feature you'd like:
Jest-Extended has an assertion named the same as jest-dom's one:
-> https://github.com/jest-community/jest-extended#tobeempty
-> https://github.com/testing-library/jest-dom#tobeempty
When both libs are used in the same project, the version of
jest-extended
overwrites the one from jest-dom.Describe alternatives you've considered:
Maybe an option is to add an alias for
toBeEmpty
namedtoBeEmptyNode
?Teachability, Documentation, Adoption, Migration Strategy:
I am not sure at this moment how the things work, could it be an option to have 2 names for the same assertion?
If yes, then the documentation could say:
"if you are using jest-extended, then use
toBeEmptyNode
" or something like thisedit
I have raised a feature request in Jest Itself asking for a feat that warns the user about the name collision and points out to a link where is documented a way to rename one of the colliding names in the project where the situation happens.
jestjs/jest#9678
It could be that the warning and the documentation of how to solve it in projects, might be enough to address this and similar situations like this one.
The text was updated successfully, but these errors were encountered: