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
Currently there seems to exist no functionality to get the test name that is currently being processed. This however should be used to prefix things like filenames of screenshots.
One proposal I saw is to create a test wrapper (using a macro) which injects this into the test being run. This could be done using "thread local", to somehow inject this into the TestContext that we have anyway. So it would be available throughout the test.
I guess the fact that we are using async tests might make this a bit more complicated though.
The text was updated successfully, but these errors were encountered:
Currently there seems to exist no functionality to get the test name that is currently being processed. This however should be used to prefix things like filenames of screenshots.
One proposal I saw is to create a test wrapper (using a macro) which injects this into the test being run. This could be done using "thread local", to somehow inject this into the
TestContext
that we have anyway. So it would be available throughout the test.I guess the fact that we are using async tests might make this a bit more complicated though.
The text was updated successfully, but these errors were encountered: