Malarg commented on code in PR #26978:
URL: https://github.com/apache/beam/pull/26978#discussion_r1214137015
##########
learning/tour-of-beam/frontend/integration_test/tour_page_test.dart:
##########
@@ -1,3 +1,5 @@
+// ignore_for_file: avoid_print
Review Comment:
Removed.
##########
learning/tour-of-beam/frontend/integration_test/tour_page_test.dart:
##########
@@ -49,8 +51,15 @@ void main() {
await _checkContentTreeScrollsProperly(wt);
await _checkHighlightsSelectedUnit(wt);
// TODO(nausharipov): fix tests
- // await _checkRunCodeWorks(wt);
- // await _checkResizeUnitContent(wt);
+ await _checkRunCodeWorks(wt);
+ await _checkResizeUnitContent(wt);
+
+ if (ExamplesLoader.failedToLoadExamples.isNotEmpty) {
+ final tokens = ExamplesLoader.failedToLoadExamples.join(', ');
+ print(
+ 'There are some havent loaded examples with tokens: $tokens',
+ );
+ }
Review Comment:
Sure, removed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]