-
Notifications
You must be signed in to change notification settings - Fork 85
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 template_string as test name #47
Comments
Additionally, |
sassanh
changed the title
Supper template_string as test name
Support template_string as test name
Apr 21, 2023
conermurphy
added a commit
to conermurphy/neotest-jest
that referenced
this issue
Mar 28, 2024
conermurphy
added a commit
to conermurphy/neotest-jest
that referenced
this issue
Mar 28, 2024
I just encountered the same issue, just raised a PR to fix it (#112), seems to now work all okay locally. With these changes should now detect tests like: describe(`some describe`, () => {})
describe("`some describe` in a string", () => {})
it(`some it`, () => {})
it("`some it` in a string", () => {}) Shows up in the summary page like the below
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tests written as
test(`Some test`)
are not supported (the test name is written in back ticks), it would be nice if we can support them.The text was updated successfully, but these errors were encountered: