بنقرة واحدة
testing-standards
Update and run unit and E2E tests after making changes to the site.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Update and run unit and E2E tests after making changes to the site.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Deploy PersonalWebsite to OKD/OpenShift and work with infra scripts (okd-setup, ARC). Use when deploying, editing files under infra/, or configuring CI runners on the cluster.
Ensure codebase is formatted with Prettier before submitting a PR.
Personal site development and content.
Use this skill to understand how to perform local development, running, and testing for the PersonalWebsite repository.
Use this skill to understand how website analytics are collected for the PersonalWebsite project via Datadog.
Use this skill to understand how container images are built and pushed for the PersonalWebsite repository.
| name | testing-standards |
| description | Update and run unit and E2E tests after making changes to the site. |
| paths | ["src/**","e2e/**","__tests__/**","**/*.test.ts","**/*.spec.ts"] |
After making any changes to the site content, structure, or design, you MUST update and run both unit and end-to-end (E2E) tests to ensure no regressions were introduced.
npm test (runs jest)npm run test:watchnpx jest path/to/file.test.tsnpm run test:e2e (runs playwright test)npx playwright test e2e/filename.spec.ts__tests__ or adjacent to components.e2e/ directory.npm test and npm run test:e2e and ensure all tests pass.