[PR #5116] [MERGED] feat: support web document and cypress test #6654

Closed
opened 2026-03-23 23:16:03 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5116
Author: @qinluhe
Created: 4/11/2024
Status: Merged
Merged: 4/29/2024
Merged by: @qinluhe

Base: mainHead: feat/support-web-document


📝 Commits (4)

  • 95a8105 feat: support web document and cypress test
  • 96b3295 fix: support blocks
  • 8714e19 fix: support table and outline
  • 287d575 fix: update nginx

📊 Changes

177 files changed (+5864 additions, -1081 deletions)

View changed files

📝 .github/workflows/tauri2_ci.yaml (+1 -1)
📝 .github/workflows/tauri_ci.yaml (+4 -7)
📝 .github/workflows/web2_ci.yaml (+4 -3)
.github/workflows/web_cypress_ci.yaml (+48 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/views/DatabasePage.tsx (+3 -3)
📝 frontend/appflowy_web_app/.eslintignore (+3 -1)
📝 frontend/appflowy_web_app/README.md (+15 -3)
frontend/appflowy_web_app/cypress.config.ts (+18 -0)
frontend/appflowy_web_app/cypress/fixtures/full_doc.json (+1 -0)
frontend/appflowy_web_app/cypress/fixtures/sign_in_success.json (+66 -0)
frontend/appflowy_web_app/cypress/fixtures/simple_doc.json (+1 -0)
frontend/appflowy_web_app/cypress/fixtures/user.json (+17 -0)
frontend/appflowy_web_app/cypress/fixtures/verify_token.json (+6 -0)
frontend/appflowy_web_app/cypress/support/commands.ts (+46 -0)
frontend/appflowy_web_app/cypress/support/component-index.html (+12 -0)
frontend/appflowy_web_app/cypress/support/component.ts (+42 -0)
frontend/appflowy_web_app/cypress/support/document.ts (+88 -0)
📝 frontend/appflowy_web_app/index.html (+5 -6)
frontend/appflowy_web_app/jest.config.cjs (+20 -0)
📝 frontend/appflowy_web_app/nginx.conf (+13 -0)

...and 80 more files

📄 Description

Feature Preview


PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 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/5116 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 4/11/2024 **Status:** ✅ Merged **Merged:** 4/29/2024 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `main` ← **Head:** `feat/support-web-document` --- ### 📝 Commits (4) - [`95a8105`](https://github.com/AppFlowy-IO/AppFlowy/commit/95a8105e3e5688e61419ae89f69488aacbda5051) feat: support web document and cypress test - [`96b3295`](https://github.com/AppFlowy-IO/AppFlowy/commit/96b3295bf702de2b14feb8f4f43515053cfbc474) fix: support blocks - [`8714e19`](https://github.com/AppFlowy-IO/AppFlowy/commit/8714e19a6936f8db198b3f42c6ca5acbb9c67ebe) fix: support table and outline - [`287d575`](https://github.com/AppFlowy-IO/AppFlowy/commit/287d5750a40c27eb88034b6994fabc9c2bd7317e) fix: update nginx ### 📊 Changes **177 files changed** (+5864 additions, -1081 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/tauri2_ci.yaml` (+1 -1) 📝 `.github/workflows/tauri_ci.yaml` (+4 -7) 📝 `.github/workflows/web2_ci.yaml` (+4 -3) ➕ `.github/workflows/web_cypress_ci.yaml` (+48 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/views/DatabasePage.tsx` (+3 -3) 📝 `frontend/appflowy_web_app/.eslintignore` (+3 -1) 📝 `frontend/appflowy_web_app/README.md` (+15 -3) ➕ `frontend/appflowy_web_app/cypress.config.ts` (+18 -0) ➕ `frontend/appflowy_web_app/cypress/fixtures/full_doc.json` (+1 -0) ➕ `frontend/appflowy_web_app/cypress/fixtures/sign_in_success.json` (+66 -0) ➕ `frontend/appflowy_web_app/cypress/fixtures/simple_doc.json` (+1 -0) ➕ `frontend/appflowy_web_app/cypress/fixtures/user.json` (+17 -0) ➕ `frontend/appflowy_web_app/cypress/fixtures/verify_token.json` (+6 -0) ➕ `frontend/appflowy_web_app/cypress/support/commands.ts` (+46 -0) ➕ `frontend/appflowy_web_app/cypress/support/component-index.html` (+12 -0) ➕ `frontend/appflowy_web_app/cypress/support/component.ts` (+42 -0) ➕ `frontend/appflowy_web_app/cypress/support/document.ts` (+88 -0) 📝 `frontend/appflowy_web_app/index.html` (+5 -6) ➕ `frontend/appflowy_web_app/jest.config.cjs` (+20 -0) 📝 `frontend/appflowy_web_app/nginx.conf` (+13 -0) _...and 80 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:16:03 +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#6654
No description provided.