mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-24 01:18:56 +00:00

* fix: pages overflow when selecting homepage * feat: integrate codemagic * Revert "fix: pages overflow when selecting homepage" This reverts commit 156882a9a7e039a38cd206306e19b94eb391f948. * chore: try to fix build * chore: remove flutter analyuze * chore: launch ios simulator * fix: flutter version * fix: integration tests on mobile * fix: mobile tests * test: fix page style test * chore: enable ios ci * chore: update codemagic token * chore: update app_id
21 lines
624 B
Dart
21 lines
624 B
Dart
import 'package:appflowy_backend/log.dart';
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'mobile/document/page_style_test.dart' as page_style_test;
|
|
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> main() async {
|
|
Log.shared.disableLog = true;
|
|
|
|
await runIntegration1OnMobile();
|
|
}
|
|
|
|
Future<void> runIntegration1OnMobile() async {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
anonymous_sign_in_test.main();
|
|
create_new_page_test.main();
|
|
page_style_test.main();
|
|
}
|