mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-22 08:27:12 +00:00
15 lines
429 B
Dart
15 lines
429 B
Dart
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'sidebar_test.dart' as sidebar_test;
|
|
import 'sidebar_expand_test.dart' as sidebar_expanded_test;
|
|
import 'sidebar_favorites_test.dart' as sidebar_favorite_test;
|
|
|
|
void startTesting() {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
// Sidebar integration tests
|
|
sidebar_test.main();
|
|
sidebar_expanded_test.main();
|
|
sidebar_favorite_test.main();
|
|
}
|