-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
lsp: support detecting test built on top of Deno.test()
like std/testing/bdd
#14804
Comments
Deno.test()
like std/testing/bdd
This is currently a design limitation, as it would require a reliable way to statically analyze a module for tests without actually running the module. Currently the static analysis is limited to a single module and identifying the Things like dynamically generated tests (or test steps) as well as other libraries that build on |
Definitely not an easy feature to implement but maybe it makes sense to implement it for |
I agree that static analysis for this would be very hard to do, and it is even harder to do it right. Doing it for |
Any update here? |
Is your feature request related to a problem? Please describe.
Testing UI integration does not show tests defined written in BDD style (https://deno.land/[email protected]/testing/bdd.ts).
Describe the solution you'd like
Would be nice to have them displayed. For now the only workaround is to just use default Deno.test
The text was updated successfully, but these errors were encountered: