[PR #6011] [CLOSED] [WIP] Tests update fill with press sequentially #108536

Closed
opened 2026-06-02 15:55:18 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/6011
Author: @joel-jeremy
Created: 10/27/2025
Status: Closed

Base: masterHead: tests-update-fill-with-pressSequentially


📝 Commits (10+)

  • 54f4427 Re-implement useDisplayPayee to use context to minimize SQL queries
  • 5ff59ae Rename ScrollProvider to useScrollListener and move to hooks folder
  • 22aed82 Add DisplayPayeeContextProvider to TransactionsTable.test.tsx
  • 2b87e7c Set higher page count
  • 7be77b8 Fix payee autocomplete search
  • e54a818 [autofix.ci] apply automated fixes
  • 987aafd Fix highlight of Create payee
  • a99846d Show search if there are 100 payees
  • 3ef0ea2 Cleanup
  • e7e2fe2 Rename to DisplayPayeeProvider

📊 Changes

29 files changed (+912 additions, -718 deletions)

View changed files

📝 packages/component-library/src/Popover.tsx (+1 -0)
📝 packages/desktop-client/e2e/page-models/account-page.ts (+37 -13)
packages/desktop-client/e2e/page-models/edit-rule-modal.ts (+171 -0)
📝 packages/desktop-client/e2e/page-models/rules-page.ts (+9 -139)
packages/desktop-client/e2e/page-models/schedule-edit-modal.ts (+78 -0)
📝 packages/desktop-client/e2e/page-models/schedules-page.ts (+4 -35)
📝 packages/desktop-client/e2e/rules.test.ts (+6 -2)
📝 packages/desktop-client/e2e/schedules.test.ts (+12 -4)
📝 packages/desktop-client/e2e/transactions.test.ts-snapshots/Transactions-creates-a-transfer-test-transaction-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/transactions.test.ts-snapshots/Transactions-creates-a-transfer-test-transaction-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/transactions.test.ts-snapshots/Transactions-creates-a-transfer-test-transaction-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/playwright.config.ts (+1 -1)
📝 packages/desktop-client/src/components/FinancesApp.tsx (+1 -1)
📝 packages/desktop-client/src/components/Modals.tsx (+2 -2)
📝 packages/desktop-client/src/components/accounts/Account.tsx (+138 -133)
📝 packages/desktop-client/src/components/autocomplete/CategoryAutocomplete.tsx (+4 -4)
📝 packages/desktop-client/src/components/autocomplete/PayeeAutocomplete.test.tsx (+1 -2)
📝 packages/desktop-client/src/components/autocomplete/PayeeAutocomplete.tsx (+71 -77)
📝 packages/desktop-client/src/components/filters/PayeeFilter.tsx (+5 -8)
📝 packages/desktop-client/src/components/mobile/MobileNavTabs.tsx (+1 -1)

...and 9 more files

📄 Description

The changes in this PR has been split from https://github.com/actualbudget/actual/pull/5795


🔄 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/actualbudget/actual/pull/6011 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 10/27/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `tests-update-fill-with-pressSequentially` --- ### 📝 Commits (10+) - [`54f4427`](https://github.com/actualbudget/actual/commit/54f4427423b9ad6877212758fda9ee2902ac4e14) Re-implement useDisplayPayee to use context to minimize SQL queries - [`5ff59ae`](https://github.com/actualbudget/actual/commit/5ff59ae3c96d52dcf0c6ceb9c5ea8cc907fa9321) Rename ScrollProvider to useScrollListener and move to hooks folder - [`22aed82`](https://github.com/actualbudget/actual/commit/22aed82c39e9b8ac5f92dd841ebd71a2c9e6cac7) Add DisplayPayeeContextProvider to TransactionsTable.test.tsx - [`2b87e7c`](https://github.com/actualbudget/actual/commit/2b87e7c3886f9435afe0cd61ef9dc50aa2c2337e) Set higher page count - [`7be77b8`](https://github.com/actualbudget/actual/commit/7be77b836cadaed27d483f49edf265ad78d858e6) Fix payee autocomplete search - [`e54a818`](https://github.com/actualbudget/actual/commit/e54a81881cd3f3bb1b91b27148bd618df4865642) [autofix.ci] apply automated fixes - [`987aafd`](https://github.com/actualbudget/actual/commit/987aafd4d4c1f0120f38af17f868db5d5c23481e) Fix highlight of Create payee - [`a99846d`](https://github.com/actualbudget/actual/commit/a99846d3f6ed543fdfc0a693ef3dbbdea6678c18) Show search if there are 100 payees - [`3ef0ea2`](https://github.com/actualbudget/actual/commit/3ef0ea256a4076fad5c87acc64da113cd5526a96) Cleanup - [`e7e2fe2`](https://github.com/actualbudget/actual/commit/e7e2fe28b6ba4cbc44ce601f79a654eeaad0bc8e) Rename to DisplayPayeeProvider ### 📊 Changes **29 files changed** (+912 additions, -718 deletions) <details> <summary>View changed files</summary> 📝 `packages/component-library/src/Popover.tsx` (+1 -0) 📝 `packages/desktop-client/e2e/page-models/account-page.ts` (+37 -13) ➕ `packages/desktop-client/e2e/page-models/edit-rule-modal.ts` (+171 -0) 📝 `packages/desktop-client/e2e/page-models/rules-page.ts` (+9 -139) ➕ `packages/desktop-client/e2e/page-models/schedule-edit-modal.ts` (+78 -0) 📝 `packages/desktop-client/e2e/page-models/schedules-page.ts` (+4 -35) 📝 `packages/desktop-client/e2e/rules.test.ts` (+6 -2) 📝 `packages/desktop-client/e2e/schedules.test.ts` (+12 -4) 📝 `packages/desktop-client/e2e/transactions.test.ts-snapshots/Transactions-creates-a-transfer-test-transaction-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/transactions.test.ts-snapshots/Transactions-creates-a-transfer-test-transaction-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/transactions.test.ts-snapshots/Transactions-creates-a-transfer-test-transaction-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/playwright.config.ts` (+1 -1) 📝 `packages/desktop-client/src/components/FinancesApp.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/Modals.tsx` (+2 -2) 📝 `packages/desktop-client/src/components/accounts/Account.tsx` (+138 -133) 📝 `packages/desktop-client/src/components/autocomplete/CategoryAutocomplete.tsx` (+4 -4) 📝 `packages/desktop-client/src/components/autocomplete/PayeeAutocomplete.test.tsx` (+1 -2) 📝 `packages/desktop-client/src/components/autocomplete/PayeeAutocomplete.tsx` (+71 -77) 📝 `packages/desktop-client/src/components/filters/PayeeFilter.tsx` (+5 -8) 📝 `packages/desktop-client/src/components/mobile/MobileNavTabs.tsx` (+1 -1) _...and 9 more files_ </details> ### 📄 Description <!-- Thank you for submitting a pull request! Make sure to follow the instructions to write release notes for your PR — it should only take a minute or two: https://github.com/actualbudget/docs#writing-good-release-notes. Try running yarn generate:release-notes *before* pushing your PR for an interactive experience. --> The changes in this PR has been split from https://github.com/actualbudget/actual/pull/5795 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-06-02 15:55:18 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#108536