mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-30 04:21:45 +00:00

* feat: support editing name when creating a new page on mobile * chore: add defaultName in layout extension * test: add cover title test on mobile * fix: cover title test on mobile * feat: add integration runner 4 * chore: update translations * chore: disable subpage feature
18 lines
497 B
Dart
18 lines
497 B
Dart
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'desktop/document/document_test_runner_2.dart' as document_test_runner_2;
|
|
import 'desktop/uncategorized/empty_test.dart' as first_test;
|
|
|
|
Future<void> main() async {
|
|
await runIntegration4OnDesktop();
|
|
}
|
|
|
|
Future<void> runIntegration4OnDesktop() async {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
// This test must be run first, otherwise the CI will fail.
|
|
first_test.main();
|
|
|
|
document_test_runner_2.main();
|
|
}
|