mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-29 03:51:45 +00:00

* feat: enable set icon for databse tab * chore: resolve conflicts * feat: enable changing dabtabse icon on mobile
21 lines
633 B
Dart
21 lines
633 B
Dart
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'desktop/database/database_icon_test.dart' as database_icon_test;
|
|
import 'desktop/first_test/first_test.dart' as first_test;
|
|
import 'desktop/uncategorized/code_block_language_selector_test.dart'
|
|
as code_language_selector;
|
|
import 'desktop/uncategorized/tabs_test.dart' as tabs_test;
|
|
|
|
Future<void> main() async {
|
|
await runIntegration9OnDesktop();
|
|
}
|
|
|
|
Future<void> runIntegration9OnDesktop() async {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
first_test.main();
|
|
tabs_test.main();
|
|
code_language_selector.main();
|
|
database_icon_test.main();
|
|
}
|