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
We have a report file located in build/test-results/roborazzi, but we are only using images from build/output/roborazzi, and the report contains image paths. We would like to load these images. I don't think we can use the roborazzi-core module to load JSON because it is very difficult to manage the dependencies in the IDE Plugin. I believe we could use KotlinX Serialization in the plugin, but we might have to copy the CaptureResults class and other related classes.
We can run the IDE Plugin using ./gradlew runIde.
"results": [
{
"golden_file_path": "xxx/git/conference-app-2024/feature/profilecard/build/outputs/roborazzi/ProfileCardScreenTest[ProfileCardScreen - when profile card is not found - input nickname - input occupation - click create button - click edit button - it should show edit screen].png",
"timestamp": 839363151954000,
"context_data": {
"roborazzi_description_class": "io.github.droidkaigi.confsched.profilecard.ProfileCardScreenTest"
},
"type": "recorded"
},
{
"golden_file_path": "xxx/git/conference-app-2024/feature/profilecard/build/outputs/roborazzi/ProfileCardScreenTest[ProfileCardScreen - when profile card is not found - input nickname - input occupation - click create button - click edit button - it should show edit screen].png",
"timestamp": 839363091096916,
"context_data": {
"roborazzi_description_class": "io.github.droidkaigi.confsched.profilecard.ProfileCardScreenTest"
},
"type": "recorded"
}
]
The text was updated successfully, but these errors were encountered:
We have a report file located in
build/test-results/roborazzi
, but we are only using images frombuild/output/roborazzi
, and the report contains image paths. We would like to load these images. I don't think we can use theroborazzi-core
module to load JSON because it is very difficult to manage the dependencies in the IDE Plugin. I believe we could use KotlinX Serialization in the plugin, but we might have to copy theCaptureResults
class and other related classes.We can run the IDE Plugin using
./gradlew runIde
.The text was updated successfully, but these errors were encountered: