ワンクリックで
integration-testing
Creates and runs integration tests for component interactions. Use when testing multiple modules working together.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Creates and runs integration tests for component interactions. Use when testing multiple modules working together.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Creates and runs unit tests for individual functions and modules. Use when writing or running unit tests.
Explores user intent, requirements and design before implementation. Use this before any creative work - creating features, building components, or modifying behavior.
Reviews code for best practices, security issues, and performance. Use when user asks to review, analyze, or audit code.
Generates clear, descriptive commit messages by analyzing git diffs. Use when writing commit messages or reviewing staged changes.
| name | integration-testing |
| description | Creates and runs integration tests for component interactions. Use when testing multiple modules working together. |
Tests how multiple components work together.
When creating integration tests:
Identify integration points
Set up test environment
Write test scenarios
#[tokio::test]
async fn test_user_registration_flow() {
// Setup
let app = spawn_app().await;
// Act
let response = app.post_register(json!({
"email": "test@example.com",
"password": "password123"
})).await;
// Assert
assert!(response.status().is_success());
}