Description
This PR fixes intermittent test failures that occurred when running the entire test suite by disabling file parallelism in the browser test configuration. The tests were passing individually but failing randomly when executed together due to mock contamination between test files running in parallel. By setting fileParallelism: false
, test files now execute sequentially, preventing mocks from interfering with each other and ensuring consistent test results across all executions.
Related Issues
Related Pull Requests
Checklist
- Changes have been tested locally.
- Unit tests have been written or updated as necessary.
- The code adheres to the repository's coding standards.
- Relevant documentation has been added or updated.
- No new warnings or errors have been introduced.
- SonarCloud issues have been reviewed and addressed.
- QA Passed