mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
11 lines
246 B
Dart
11 lines
246 B
Dart
|
import 'package:flutter_test/flutter_test.dart';
|
||
|
|
||
|
import 'base.dart';
|
||
|
|
||
|
extension EmojiTestExtension on WidgetTester {
|
||
|
Future<void> tapEmoji(String emoji) async {
|
||
|
final emojiWidget = find.text(emoji);
|
||
|
await tapButton(emojiWidget);
|
||
|
}
|
||
|
}
|