mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
7f44b181bd
* chore: update client-api rev * chore: update collab rev id * feat: add sign_in_request and import shared entity * feat: added to userworkspace from af_workspace * chore: add script to update the client-api rev id * chore: update client-api rev * feat: add workspaces api * feat: added check user * chore: config * chore: update client_api version * chore: ws connect * chore: ws connect * chore: update crate versions * chore: rename event * chore: update client-appi * chore: set appflowy cloud env * chore: add env template * chore: update env name * docs: update docs * fix: check_user * feat: impl sign_in_with_url * feat: add file storage placeholders * chore: update client-api * chore: disable test * feat: impl workspace add and remove * chore: sign up test * feat: select cover image on upload (#3488) * fix: close popover after item selection in settings view (#3362) * fix: close popover after item selection in settings view * fix: add missing await before closing popover * fix: find popover container by context instead of passing controllers around * fix: add requested changes * feat: close text direction settings popups after selection * fix: clean up * fix: restore theme value dropdown as StatefulWidget * feat: openai and stabilityai integration (#3439) * chore: create trait * test: add tests * chore: remove log * chore: disable log * chore: checklist ux flow redesign (#3418) * chore: ux flow redesign * chore: remove unused imports * fix: allow creation of tasks of the same name * chore: apply code suggestions from Mathias * fix: add padding below field title text field (#3440) * Fixed Issue no #3426 * Reversed the pubspec.lock mistaken update * FIXED PADDING * Fixed Padding issue on calender field edit popup * chore: rename package name (#3501) * fix: right icon size sam as left one (#3494) * feat: enable removing user icon (#3487) * feat: enable removing user icon * fix: generate to true * fix: review comments * fix: more review comments * fix: integration test and final changes * fix: made cursor grab and background color when hovering on Appearance Options Buttons (#3498) * chore: calendar UI polish (#3484) * chore: update calendar theming * feat: add event popup editor * chore: new event button redesign and add card shadows * chore: unscheduled events button * chore: event title text field * fix: focus node double dispose * chore: show popover when create new event * test: integrate some tests for integration testing purposes * fix: some fixes and more integration tests * chore: add more space between font item and font menu * feat: add reset font button in toolbar * feat: only show text direction toolbar item when RTL is enabled * fix: unable to change RTL of heading block * test: add integration test for ltr/rtl mode * chore: update inlang project settings (#3441) * feat: using script to update the collab source. (#3508) * chore: add script * chore: update script * chore: update bytes version * chore: submit lock file * chore: update test * chore: update test * chore: bump version * chore: update * ci: fix * ci: fix * chore: update commit id * chore: update commit id * chore: update commit id * fix: is cloud enable --------- Co-authored-by: Fu Zi Xiang <speed2exe@live.com.sg> Co-authored-by: Mathias Mogensen <42929161+Xazin@users.noreply.github.com> Co-authored-by: Vincenzo De Petris <37916223+vincendep@users.noreply.github.com> Co-authored-by: Richard Shiue <71320345+richardshiue@users.noreply.github.com> Co-authored-by: Aryan More <61151896+aryan-more@users.noreply.github.com> Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io> Co-authored-by: Lakhan Baheti <94619783+1akhanBaheti@users.noreply.github.com> Co-authored-by: Nitin-Poojary <70025277+Nitin-Poojary@users.noreply.github.com> Co-authored-by: Jannes Blobel <72493222+jannesblobel@users.noreply.github.com>
84 lines
2.9 KiB
Dart
84 lines
2.9 KiB
Dart
import 'package:appflowy/env/env.dart';
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'database_calendar_test.dart' as database_calendar_test;
|
|
import 'database_cell_test.dart' as database_cell_test;
|
|
import 'database_field_test.dart' as database_field_test;
|
|
import 'database_field_settings_test.dart' as database_field_settings_test;
|
|
import 'database_filter_test.dart' as database_filter_test;
|
|
import 'database_row_page_test.dart' as database_row_page_test;
|
|
import 'database_row_test.dart' as database_row_test;
|
|
import 'database_setting_test.dart' as database_setting_test;
|
|
import 'database_share_test.dart' as database_share_test;
|
|
import 'database_sort_test.dart' as database_sort_test;
|
|
import 'database_view_test.dart' as database_view_test;
|
|
import 'document/document_test_runner.dart' as document_test_runner;
|
|
import 'import_files_test.dart' as import_files_test;
|
|
import 'share_markdown_test.dart' as share_markdown_test;
|
|
import 'switch_folder_test.dart' as switch_folder_test;
|
|
import 'sidebar/sidebar_test_runner.dart' as sidebar_test_runner;
|
|
import 'board/board_test_runner.dart' as board_test_runner;
|
|
import 'tabs_test.dart' as tabs_test;
|
|
import 'hotkeys_test.dart' as hotkeys_test;
|
|
import 'appearance_settings_test.dart' as appearance_test_runner;
|
|
import 'auth/auth_test.dart' as auth_test_runner;
|
|
import 'settings/user_icon_test.dart' as user_icon_test;
|
|
import 'settings/user_language_test.dart' as user_language_test;
|
|
|
|
/// The main task runner for all integration tests in AppFlowy.
|
|
///
|
|
/// Having a single entrypoint for integration tests is necessary due to an
|
|
/// [issue caused by switching files with integration testing](https://github.com/flutter/flutter/issues/101031).
|
|
/// If flutter/flutter#101031 is resolved, this file can be removed completely.
|
|
/// Once removed, the integration_test.yaml must be updated to exclude this as
|
|
/// as the test target.
|
|
void main() {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
switch_folder_test.main();
|
|
share_markdown_test.main();
|
|
import_files_test.main();
|
|
|
|
// Document integration tests
|
|
document_test_runner.startTesting();
|
|
|
|
// Sidebar integration tests
|
|
sidebar_test_runner.startTesting();
|
|
|
|
// Board integration test
|
|
board_test_runner.startTesting();
|
|
|
|
// Database integration tests
|
|
database_cell_test.main();
|
|
database_field_test.main();
|
|
database_field_settings_test.main();
|
|
database_share_test.main();
|
|
database_row_page_test.main();
|
|
database_row_test.main();
|
|
database_setting_test.main();
|
|
database_filter_test.main();
|
|
database_sort_test.main();
|
|
database_view_test.main();
|
|
database_calendar_test.main();
|
|
|
|
// Tabs
|
|
tabs_test.main();
|
|
|
|
// Others
|
|
hotkeys_test.main();
|
|
|
|
// Appearance integration test
|
|
appearance_test_runner.main();
|
|
|
|
// User settings
|
|
user_icon_test.main();
|
|
user_language_test.main();
|
|
|
|
if (isCloudEnabled) {
|
|
auth_test_runner.main();
|
|
}
|
|
|
|
// board_test.main();
|
|
// empty_document_test.main();
|
|
// smart_menu_test.main();
|
|
}
|