-
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
feat: Deprecate toBeEmpty in favour of toBeEmptyDOMElement (#216) #254
feat: Deprecate toBeEmpty in favour of toBeEmptyDOMElement (#216) #254
Conversation
Codecov Report
@@ Coverage Diff @@
## master #254 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 22 23 +1
Lines 305 309 +4
Branches 73 73
=========================================
+ Hits 305 309 +4
Continue to review full report at Codecov.
|
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.
Looks god.
I have only one doubt about the name. I wonder if it should be toBeEmptyDOMElement
. I really wouldn't mind it like it is now, but I realized we also have toBeInTheDOM
(which has been deprecated for a long while now, and I think it's time to remove it in breaking change release already, so maybe this is not a big deal).
Hi @gnapse so should I leave it with this name? I could do another PR to remove What is the usual process to merge a PR? one approval and I merge myself? two approvals and the second approver merges? |
I'd rename this to @DanielaValero the removal of |
Hi @gnapse, about the renaming, sure, it took me a while to notice the part needs renaming is to make DOM all uppercase. If I might suggest yo an improving area when giving feedback, in the case of renaming or typos, authors of the code not necessarily notice when they did the typo or renaming bit, and it helps a lot to point out specifically what is the part. i.e: Dom -> DOM 🙂 As of the Thanks for the clarification on the feedback! The renaming is done, please check again. :) |
In order to prevent name clashes with jest-extended, the toBeEmpty will have from now on a more specific name.
@DanielaValero sorry. Yes, I assumed it was evident when it is not. Will keep that in mind. I realize I never mentioned the fact that this word is an acronym even, which would've given the clue about the all-caps vs. capitalized difference.
Sure. Your help is greatly appreciated. I'll review it all shortly. Thanks! |
@all-contributors add @DanielaValero for code, test, docs |
I've put up a pull request to add @DanielaValero! 🎉 |
🎉 This PR is included in version 5.9.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Is there an ETA on this arriving in the @types repo? |
@gnapse @charliematters The types PR is merged and a new package version is released, so we only have to update the version here, right? If yes, I can provide a quick PR. |
Yes, please. Do so. Thanks! |
This change enables the new API from testing-library/jest-dom#254
What:
toBeEmpty
toBeEmptyDomElement
to replacetoBeEmpty
Why:
This is an alternative solution that allows users of
jest-dom
andjest-extended
to check for emptiness of strings, etc. And DOM elements, using different matchers.How:
toBeEmptyDomElement
is a copy oftoBeEmpty
, the only changes in there is the name.Checklist: