mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
6edb184bfb
* refactor: mobile view page * fix: provider not found * chore: add page style integration tests * fix: android title bar padding * fix: unable to click mentioned page on Android * fix: font family not available log
11 lines
387 B
Dart
11 lines
387 B
Dart
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'mobile/home_page/create_new_page_test.dart' as create_new_page_test;
|
|
import 'mobile/sign_in/anonymous_sign_in_test.dart' as anonymous_sign_in_test;
|
|
|
|
Future<void> runIntegrationOnMobile() async {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
anonymous_sign_in_test.main();
|
|
create_new_page_test.main();
|
|
}
|