スキル一覧に戻る
conradbeach

manual-testing

by conradbeach

My personal dotfiles.

0🍴 0📅 2026年1月21日
GitHubで見るManusで実行

SKILL.md


name: manual-testing description: Manually verify code changes work as expected. Use after implementing a feature or bug fix, after making visual/UI changes, after modifying API endpoints, or before considering work "done". All functional changes must be manually verified, even small changes. This is in addition to automated tests.

Manual Testing

Testing Approaches

Visual/UI Changes

For front-end changes, use the Chrome browser to verify the UI:

  1. Navigate to the relevant page using the browser automation tools
  2. Take a screenshot to see the current state
  3. Evaluate the result - does it look correct? Is the layout right? Are styles applied?
  4. Iterate 2-3 times if needed until the UI looks good
  5. Test interactions - click buttons, fill forms, verify behavior

API Endpoint Changes

Use curl to verify endpoints work. Key things to verify:

  • Correct HTTP status codes
  • Expected response structure
  • Error handling for invalid inputs
  • Authentication/authorization works correctly

Backend Changes

  • Execute method with various inputs directly in a REPL or test script (e.g. rails console, rails runner, etc.)
  • Verify database state changes when applicable

Configuration Changes

  • Verify the configuration loads without errors
  • Test that the configuration has the intended effect
  • Check for syntax errors or typos

CLI/Script Changes

  • Run commands with different argument combinations
  • Test with valid and invalid inputs
  • Verify output format and content
  • Check exit codes

Verification Checklist

Before marking work as complete:

  • Happy path works as expected
  • Edge cases handled appropriately
  • Error states display correctly
  • No console errors in browser
  • No unexpected server errors in logs

スコア

総合スコア

40/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です