mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 00:52:14 +00:00

* 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
17 lines
511 B
Dart
17 lines
511 B
Dart
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'sidebar_expand_test.dart' as sidebar_expanded_test;
|
|
import 'sidebar_favorites_test.dart' as sidebar_favorite_test;
|
|
import 'sidebar_icon_test.dart' as sidebar_icon_test;
|
|
import 'sidebar_test.dart' as sidebar_test;
|
|
|
|
void startTesting() {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
// Sidebar integration tests
|
|
sidebar_test.main();
|
|
sidebar_expanded_test.main();
|
|
sidebar_favorite_test.main();
|
|
sidebar_icon_test.main();
|
|
}
|