Skip to content

Commit

Permalink
[web] Print screenshot paths at the right spot (#40714)
Browse files Browse the repository at this point in the history
[web] Print screenshot paths at the right spot
  • Loading branch information
mdebbar authored Mar 28, 2023
1 parent af0a37e commit ec6ee2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web_sdk/web_test_utils/lib/image_compare.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ Future<String> compareImage(
// At the moment, we don't support local screenshot testing because we use
// Skia Gold to handle our screenshots and diffing. In the future, we might
// implement local screenshot testing if there's a need.
if (verbose) {
print('Screenshot generated: file://$screenshotPath'); // ignore: avoid_print
}
return 'OK';
}

// TODO(mdebbar): Use the Gold tool to locally diff the golden.
if (verbose) {
print('Screenshot generated: file://$screenshotPath'); // ignore: avoid_print
}
return 'OK';
}

Expand Down

0 comments on commit ec6ee2f

Please sign in to comment.