mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-03 22:41:08 +00:00

* fix: ingore keyup event in cover title * feat: add text field with line metric * chore: refactor test strcuture * test: add arrow down key test
20 lines
528 B
Dart
20 lines
528 B
Dart
import 'document/document_test_runner.dart' as document_test_runner;
|
|
import 'sidebar/sidebar_move_page_test.dart' as sidebar_move_page_test;
|
|
import 'uncategorized/uncategorized_test_runner.dart'
|
|
as uncategorized_test_runner;
|
|
import 'workspace/workspace_test_runner.dart' as workspace_test_runner;
|
|
|
|
Future<void> main() async {
|
|
// uncategorized
|
|
uncategorized_test_runner.main();
|
|
|
|
// workspace
|
|
workspace_test_runner.main();
|
|
|
|
// document
|
|
document_test_runner.main();
|
|
|
|
// sidebar
|
|
sidebar_move_page_test.main();
|
|
}
|