[PR #352] [MERGED] Bloc test #4088

Closed
opened 2026-03-23 21:36:14 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/352
Author: @appflowy
Created: 2/19/2022
Status: Merged
Merged: 2/20/2022
Merged by: @appflowy

Base: mainHead: bloc_test


📝 Commits (10+)

  • 2c3aade refactor: remove unuse code
  • c559c5c feat: config bloc test
  • 6fc8197 feat: build flowy_sdk as dylib on macOS
  • 2781809 chore: await Sytem launch
  • 0b0cbe1 ci: run flutter test on ci
  • bf7e1b9 ci: add build flowy_sdk deps
  • 860ebc5 ci: update dart_tests
  • 7d93ed8 ci: run actions when specified files changed.
  • e9ba9ad ci: add .appflowy_dev
  • cdec567 feat: separate develop, release, test working directory

📊 Changes

56 files changed (+434 additions, -546 deletions)

View changed files

📝 .github/workflows/dart_lint.yml (+6 -3)
.github/workflows/dart_test.yml (+47 -0)
📝 .github/workflows/rust_test.yml (+8 -8)
📝 frontend/Makefile.toml (+3 -4)
📝 frontend/app_flowy/.gitignore (+2 -1)
📝 frontend/app_flowy/.vscode/launch.json (+2 -2)
📝 frontend/app_flowy/assets/fonts/FlowyIconData.ttf (+0 -0)
📝 frontend/app_flowy/lib/main.dart (+1 -1)
frontend/app_flowy/lib/startup/launcher.dart (+0 -40)
📝 frontend/app_flowy/lib/startup/startup.dart (+76 -20)
📝 frontend/app_flowy/lib/startup/tasks/app_widget.dart (+2 -3)
📝 frontend/app_flowy/lib/startup/tasks/init_sdk.dart (+22 -20)
📝 frontend/app_flowy/lib/startup/tasks/platform_service.dart (+2 -4)
📝 frontend/app_flowy/lib/startup/tasks/prelude.dart (+2 -1)
📝 frontend/app_flowy/lib/user/infrastructure/deps_resolver.dart (+1 -1)
📝 frontend/app_flowy/lib/user/infrastructure/network_monitor.dart (+3 -3)
📝 frontend/app_flowy/lib/user/presentation/skip_log_in_screen.dart (+1 -1)
📝 frontend/app_flowy/lib/user/presentation/splash_screen.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/application/app/app_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/application/appearance.dart (+1 -1)

...and 36 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/352 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 2/19/2022 **Status:** ✅ Merged **Merged:** 2/20/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `bloc_test` --- ### 📝 Commits (10+) - [`2c3aade`](https://github.com/AppFlowy-IO/AppFlowy/commit/2c3aade0f963fdf193093858db9287bcec74c4e7) refactor: remove unuse code - [`c559c5c`](https://github.com/AppFlowy-IO/AppFlowy/commit/c559c5cc6b4744d242730b7fe4b7635f5a35e94f) feat: config bloc test - [`6fc8197`](https://github.com/AppFlowy-IO/AppFlowy/commit/6fc81974680089400d4da6069a9e9fe090ae5c87) feat: build flowy_sdk as dylib on macOS - [`2781809`](https://github.com/AppFlowy-IO/AppFlowy/commit/2781809f871d45345389289ff5fc8242ba546b27) chore: await Sytem launch - [`0b0cbe1`](https://github.com/AppFlowy-IO/AppFlowy/commit/0b0cbe192b1188bd2b4fcc895003e3c8b374615b) ci: run flutter test on ci - [`bf7e1b9`](https://github.com/AppFlowy-IO/AppFlowy/commit/bf7e1b9829dd554b86b7c9633077dc416833fbe5) ci: add build flowy_sdk deps - [`860ebc5`](https://github.com/AppFlowy-IO/AppFlowy/commit/860ebc567b051c71951f3a3a5a44966dddf38130) ci: update dart_tests - [`7d93ed8`](https://github.com/AppFlowy-IO/AppFlowy/commit/7d93ed8e8191621dc68a0981f184792119b93800) ci: run actions when specified files changed. - [`e9ba9ad`](https://github.com/AppFlowy-IO/AppFlowy/commit/e9ba9ad149c4f53f19bc0ae64336e2044f8aebbf) ci: add .appflowy_dev - [`cdec567`](https://github.com/AppFlowy-IO/AppFlowy/commit/cdec567cbbb6356112208aa6fcdcccf6bd1fa9c5) feat: separate develop, release, test working directory ### 📊 Changes **56 files changed** (+434 additions, -546 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/dart_lint.yml` (+6 -3) ➕ `.github/workflows/dart_test.yml` (+47 -0) 📝 `.github/workflows/rust_test.yml` (+8 -8) 📝 `frontend/Makefile.toml` (+3 -4) 📝 `frontend/app_flowy/.gitignore` (+2 -1) 📝 `frontend/app_flowy/.vscode/launch.json` (+2 -2) 📝 `frontend/app_flowy/assets/fonts/FlowyIconData.ttf` (+0 -0) 📝 `frontend/app_flowy/lib/main.dart` (+1 -1) ➖ `frontend/app_flowy/lib/startup/launcher.dart` (+0 -40) 📝 `frontend/app_flowy/lib/startup/startup.dart` (+76 -20) 📝 `frontend/app_flowy/lib/startup/tasks/app_widget.dart` (+2 -3) 📝 `frontend/app_flowy/lib/startup/tasks/init_sdk.dart` (+22 -20) 📝 `frontend/app_flowy/lib/startup/tasks/platform_service.dart` (+2 -4) 📝 `frontend/app_flowy/lib/startup/tasks/prelude.dart` (+2 -1) 📝 `frontend/app_flowy/lib/user/infrastructure/deps_resolver.dart` (+1 -1) 📝 `frontend/app_flowy/lib/user/infrastructure/network_monitor.dart` (+3 -3) 📝 `frontend/app_flowy/lib/user/presentation/skip_log_in_screen.dart` (+1 -1) 📝 `frontend/app_flowy/lib/user/presentation/splash_screen.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/application/app/app_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/application/appearance.dart` (+1 -1) _...and 36 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:36:14 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#4088
No description provided.