-
Notifications
You must be signed in to change notification settings - Fork 18
Description
Which feature do you want to improve?
Debug should be able to watch for dom changes, so that we can put debug at the beginning of the test, and then have the latest dom represented at time of failure.
What and why you want to improve that feature
This is useful so that we don't need to move the debug statement around as the test fails.
Additionally, this is useful when using things like the find* operators with testing library when it is polling for changes.
Or when debugging tests.
Potential bugs/ unexpected behaviors
Possible unexpected behavior if the two modes are mixed.
I.e. having this "watch debug" in one place, and then have a non-watch debug statement later on.
How to implement the changes
We could use a MutationObserver on the document element to watch for changes.
Others
@nvh95 is this project still active? I'd love to open a PR for this feature, but it seems like there are a few PRs that have been open for a long time.
