You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by GitBox <gi...@apache.org> on 2023/01/19 09:34:33 UTC

[GitHub] [beam] Malarg commented on a diff in pull request #25033: Playground integration test run and editing

Malarg commented on code in PR #25033:
URL: https://github.com/apache/beam/pull/25033#discussion_r1081010439


##########
playground/frontend/playground_components_dev/lib/src/widget_tester.dart:
##########
@@ -50,4 +51,18 @@ extension WidgetTesterExtension on WidgetTester {
     final context = element(find.codeField());
     return context.read<PlaygroundController>();
   }
+
+  Future<void> runShortcut(Set<LogicalKeyboardKey> shortcut) async {
+    for (final key in shortcut) {
+      await sendKeyDownEvent(key);
+    }
+    for (final key in shortcut) {

Review Comment:
   It's a Set



-- 
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: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org