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
So when moving to v2 we were using ResourcesApprovalsExtension for v1 to set the source dir but it broke because it changed to adding src/test/resources to the end of the file instead of going to that directory so we fixed by doing this:
classTest {
privateval sourceRoot:File=File("src/test/resources")
@RegisterExtension
val approvals:ApprovalsExtension=ApprovalsExtension(sourceRoot)
...
So when moving to v2 we were using
ResourcesApprovalsExtension
for v1 to set the source dir but it broke because it changed to addingsrc/test/resources
to the end of the file instead of going to that directory so we fixed by doing this:previously we were doing this:
is this a bug or not or were we miss using it?
The text was updated successfully, but these errors were encountered: