You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Turns out that, as by the current implementation, the annotation isn't even made to be working on test methods. Making that work severely interfers with orphan detection. I guess its best to only allow the annotation on test class level.
If you want to change the snapshot directory within a single test method, you could use the DSL via snapshot.in(Path.of(...))...
Thus wie should update the documentation accordingly and consequently remove ElementType.METHOD from the annotation's @Target
The text was updated successfully, but these errors were encountered:
Turns out that, as by the current implementation, the annotation isn't even made to be working on test methods. Making that work severely interfers with orphan detection. I guess its best to only allow the annotation on test class level.
If you want to change the snapshot directory within a single test method, you could use the DSL via
snapshot.in(Path.of(...))...
Thus wie should update the documentation accordingly and consequently remove
ElementType.METHOD
from the annotation's@Target
The text was updated successfully, but these errors were encountered: