mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-18 22:46:57 +00:00
13 lines
331 B
Dart
13 lines
331 B
Dart
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'board_row_test.dart' as board_row_test;
|
|
import 'board_add_row_test.dart' as board_add_row_test;
|
|
|
|
void startTesting() {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
// Board integration tests
|
|
board_row_test.main();
|
|
board_add_row_test.main();
|
|
}
|