mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
9586ea0e6f
* feat: add no pages inside tips * feat: show view's ancestors (include itself) title on bar * feat: show view's ancestors (include itself) title on bar * test: add integration tests * fix: integration tests
15 lines
367 B
Dart
15 lines
367 B
Dart
import 'package:emoji_mart/emoji_mart.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'base.dart';
|
|
|
|
extension EmojiTestExtension on WidgetTester {
|
|
Future<void> tapEmoji(String emoji) async {
|
|
final emojiWidget = find.descendant(
|
|
of: find.byType(EmojiPicker),
|
|
matching: find.text(emoji),
|
|
);
|
|
await tapButton(emojiWidget);
|
|
}
|
|
}
|