mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
13 lines
414 B
Dart
13 lines
414 B
Dart
|
import 'package:flutter/services.dart';
|
||
|
import 'package:flutter_test/flutter_test.dart' as flutter_test;
|
||
|
|
||
|
class FlowyTestKeyboard {
|
||
|
static Future<void> simulateKeyDownEvent(List<LogicalKeyboardKey> keys,
|
||
|
{required flutter_test.WidgetTester tester}) async {
|
||
|
for (final LogicalKeyboardKey key in keys) {
|
||
|
await flutter_test.simulateKeyDownEvent(key);
|
||
|
await tester.pumpAndSettle();
|
||
|
}
|
||
|
}
|
||
|
}
|