-
Notifications
You must be signed in to change notification settings - Fork 25
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
Cannot navigate to, or run, included tests #103
Comments
Yeah, it's easier for junit because it can look for subclasses - that's all it needs to do. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Any plans to work on this in the future? |
The latest release has navigation when executing individual tests/subtests. |
Not surprisingly, it's going to be hard to work out, and this is partly a note to self to try and solve, but:
Given these reusable tests:
I cannot:
someSpecs
from the declarationfun someSpecs
- there's no gutter icontest 2
in isolation - there's no gutter iconIn the equivalent JUnit scenario where you use an abstract super class, all three work; 1 & 2 offer you the options to run against either
UsingStubbedDependencySpecs
, orUsingRealDependencySpecs
, or both, and 3 takes you to the test declaration inSomeSpecs
. In:I guess the plugin would need to read the call hierarchy to find all the classes extending *Spec where include is passed the result of function that ultimately calls
stringSpec
...The text was updated successfully, but these errors were encountered: