feat(i18n): add Arabic language support - #638
Conversation
|
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 78b9f6c477
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
|
|
||
| export default defineConfig({ | ||
| test: { | ||
| environment: 'jsdom', |
There was a problem hiding this comment.
Add the missing jsdom dependency for UI tests
In a clean checkout, the new @page-agent/ui test script is picked up by root npm test/CI, and this config asks Vitest to start the jsdom environment; Vitest documents that this environment uses the jsdom package (docs), but the repo only declares happy-dom and vitest, not jsdom, so the UI test workspace will fail before running any tests. Add jsdom to the repo devDependencies/lockfile or use the already-installed happy-dom/default node environment instead.
Useful? React with 👍 / 👎.
Summary
This PR adds Arabic (ar) language support.
Changes
Thank you for reviewing!