Test: Improve UI test coverage and fix Jest setup #358
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

Description
Add Jest configuration, Babel preset, and test-only mocks/shims so frontend UI tests run reliably in this repo.
Add beginner-friendly component tests and convert several fragile tests to React Testing Library where practical.
Keep production code unchanged; all edits are test-only (configs, mocks, and tests).
Changes
• Added and updated test configuration:
• Added test coverage for:
• Migrated index.test.jsx to React Testing Library (RTL)
How to test
Install dependencies:
yarn install
Run the test suite:
yarn test --runInBand
Expected result:
All frontend tests execute; on my run the suite passed (12 suites, 18 tests).
Quick checks:
Confirm no production files were modified (only test/config files and new tests).
Run single suites while iterating, for example:
yarn test button.test.jsx
close #159