-
Notifications
You must be signed in to change notification settings - Fork 3
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
Support waitFor
without a DOM
#3
Comments
Yeah I've heard this a couple of times. But it should be a separate package. It doesn't make sense to have Though we can't be fully runtime agnostic since stuff like |
I also suggested last night it be it's own package. Additionally, the agnostic part would be test-runners, it would still be running on Node (potentially Deno I guess if you wanted). The reason being I plan on moving from Jest to Vitest and that was brought up as a compatibility issue for Testing Library being somewhat tied to Jest. |
We're only tied to Jest with regards to fake timer support in which we don't use MutationObserver anyway. So I don't really understand why this is a Jest vs Vitest issue unless Vitest uses another DOM implementation that's worse than JSDOM with regards to implementation progress. If there's an issue with Vitest, please file a separate issue. This should "just" work (assuming Vitest has setup the DOM environment properly). |
I was clarifying that it wasn't a runtime issue, that the "agnostic" aspect was initially around making sure it can run on other test runners, AVA, Vitest, etc... and should run on Node without the DOM as the initial issue indicated. The use case is tests in the CLoudflare Wrangler CLI where I am doing a lot of stuff manually that could just be |
I want to be very clear to set expectations: This issue is about making sure The only thing that's not supported is fake timers other than the ones provided by the global Vitest, AVA etc are not what we usually consider a "runtime" (apart from the globals these test runners may inject). Node.js, Deno, Cloudflare workers etc are what is usually considered the "runtime". If you want fake timer support of other test runners, we have testing-library/dom-testing-library#987 instead |
I am almost certain we are saying the same thing @eps1lon
Likely the "slightly tied to Jest" thing myself and Nick had talked about last night. I had said "agnostic part would be test-runners"
I don't think anyone here was making a claim otherwise, pretty sure all of us here know what a "runtime" is. Again in my case in which I discussed with Nick "agnostic part would be test-runners" (because it moving from Jest to Vitest) "it would still be running on Node" (The Cloudflare Workers CLI runs on Node) |
Why? Would this break anything? We already have conditional feature flags for other things, I think this would be a pretty minor fix compared to trying to release and maintain a new package.
In theory, maybe. But in practice, I'm not aware of a JavaScript runtime used for testing that doesn't support
I don't think the name Parity with native is a good point, though. I think it could be helpful to have a base implementation of
This issue isn't specific to Vitest, which is my reproduction doesn't use it. The way I see it, you should be able to use an API that doesn't require a DOM without a DOM. While Vitest does support multiple DOM implementations which could cause compatibility issues with us, it's also valid to use a different test framework, or Jest without a DOM (which is actually the default config now). @eps1lon Please do not edit my labels without my permission unless you can prove that they're incorrect. I have provided a valid reproduction. If you still don't think this is a bug, then please provide a reproduction of a passing test using |
As @eps1lon mentioned, I also think that this would be better as a separate package. The reasoning is that the package name To be blunt, maybe creating a separate repo would be an overkill for just a simple method that waits for something? In the past, we've had a request to support a CLI - if this is something that gains more traction we can add it to the Testing Library family IF it will be maintained. Links: |
If this package is only for the DOM, then why do some of its tests depend on a Node environment? I'd argue it is already environment agnostic enough that users maybe consider parts of it need to work without a DOM, considering this is open source and they could read our tests. |
As I recall, it originally was a separate package that got vendored in and customized with the MutationObserver stuff. https://github.com/TheBrainFamily/wait-for-expect/blob/master/src/index.ts |
Initial implementation proposal: #2. Comments welcome. Will merge #2 soon-ish as an alpha, use in dom-testing-library in a MINOR and, once all initial bugs are ironed out, release |
Describe the feature you'd like:
I was chatting with @JacobMGEvans, who was asking if
waitFor
could be used to test a CLI written in Node asyncronously. I thought you should be able towaitFor
any callback and options that don't depend on the DOM., but ended up getting an error with this simple example:@testing-library/dom
version: 8.19.1Suggested implementation:
Run conditional checks on anything that requires a DOM implementing. However, I'm not against assuming there is a DOM when the user attempts to pass DOM elements explicitly.
Ideally this should also work without Jest or Node, as it's valid to run CLI tests in any JavaScript runtime or testing framework, and the user likely wouldn't need Jest to conveniently set up a DOM and our matchers.
Describe alternatives you've considered:
We could publish a separate package that doesn't depend on the DOM, but I personally don't think it's worth the maintenance burden for a single function. Alternatively, we could make our own testing library with additional utilities for CLIs, though I'd want us to reach consensus on overall CLI testing goals before implementing new APIs.
Teachability, Documentation, Adoption, Migration Strategy:
A simple patch to the
waitFor
function wouldn't require any documentation, though a separate package would.The text was updated successfully, but these errors were encountered: