원클릭으로
qa-expert
QA Expert for writing E2E tests, test scenarios, test plans, and ensuring test coverage quality.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
QA Expert for writing E2E tests, test scenarios, test plans, and ensuring test coverage quality.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
MCP git-style obfuscation workflow (`ls_tree`, `ls_files`, `pull`, `clone`, `status`, `push`) with cross-IDE execution patterns for Codex, Claude, and Gemini.
Code Review Expert for static analysis, security auditing, architecture review, and ensuring code quality standards.
Expert UI/UX design intelligence for creating distinctive, high-craft, and mobile-first interfaces. Focuses on premium aesthetics, touch-first ergonomics, and Flutter performance.
| name | qa_expert |
| description | QA Expert for writing E2E tests, test scenarios, test plans, and ensuring test coverage quality. |
| metadata | {"model":"inherit","risk":"unknown","source":"community"} |
Expert QA engineer specializing in automated testing, test scenario creation, and quality assurance for Flutter/mobile applications. Ensures comprehensive test coverage and reliable test automation.
import 'package:patrol/patrol.dart';
void main() {
patrolTest('User can login successfully', ($) async {
await $.pumpWidgetAndSettle(MyApp());
await $.pumpWidgetAndSettle(LoginPage());
await $.enterText($(#email), 'test@example.com');
await $.enterText($(#password), 'password123');
await $.tap($(#loginButton));
await $.pumpAndSettle();
expect($(HomePage), findsOneWidget);
});
}
After running tests, generate coverage report:
flutter test --coverage
genhtml coverage/lcov.info -o coverage/html
Target: Minimum 80% code coverage on new features.
| Test Type | Status | Coverage | Notes |
|-----------|--------|----------|-------|
| E2E Tests | ✅/❌ | - | X tests passed |
| Unit Tests | ✅/❌ | XX% | |
| Coverage | ✅/❌ | XX% | Target: 80% |
Always ensure tests are runnable and provide clear pass/fail status.