Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기test
스타3
포크0
업데이트2026년 1월 7일 00:52
Run all tests (frontend and backend)
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Run all tests (frontend and backend)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate a new React component with Mantine styling
Update documentation after implementing features or making changes
Run a quick architecture review via architect-reviewer agent
Generate mobile-specific React components with platform detection and safe areas
Run a quick security audit on recent changes or specific files
Generate a test file for a component, hook, or utility
| name | test |
| description | Run all tests (frontend and backend) |
Runs the complete test suite for both frontend (Vitest) and backend (Cargo).
pnpm test:run
cd src-tauri && cargo test
*.test.ts, *.spec.ts@testing-library/react for component testssrc-tauri/src/ modules=== Frontend Tests ===
✓ src/lib/loro/object-store.test.ts (12 tests)
✓ src/hooks/useInbox.test.ts (5 tests)
✓ src/lib/templates/template-engine.test.ts (8 tests)
Test Files: 3 passed
Tests: 25 passed
Duration: 2.3s
=== Backend Tests ===
running 8 tests
test crypto::tests::test_key_derivation ... ok
test crypto::tests::test_encryption ... ok
test network::tests::test_discovery ... ok
...
test result: ok. 8 passed; 0 failed
=== Summary ===
✓ Frontend: 25 tests passed
✓ Backend: 8 tests passed
For more granular testing:
pnpm test -- src/path/to/test.ts # Specific frontend test
cd src-tauri && cargo test test_name # Specific Rust test