mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-03 14:30:29 +00:00

* chore: import into space * chore: par insert * fix: migrate from anon * chore: fix test * chore: update test * chore: add test * chore: update test * chore: update test * chore: update docs * fix: space collab * chore: update test
23 lines
653 B
Dart
23 lines
653 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;
|
|
import 'data_migration/data_migration_test_runner.dart' as data_migration_test_runner;
|
|
|
|
Future<void> main() async {
|
|
data_migration_test_runner.main();
|
|
// uncategorized
|
|
uncategorized_test_runner.main();
|
|
|
|
// workspace
|
|
workspace_test_runner.main();
|
|
|
|
// document
|
|
document_test_runner.main();
|
|
|
|
// sidebar
|
|
sidebar_move_page_test.main();
|
|
|
|
}
|