run-integration-tests

Run Aspire AppHost integration tests and report failures with diagnostics.

15|Updated Dec 25, 2025
One-click install
npx skills add https://github.com/aalmada/BookStore --skill run-integration-tests-aalmada
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: run-integration-tests
Source: https://github.com/aalmada/BookStore/tree/main/.claude/skills/run-integration-tests
Command: npx skills add https://github.com/aalmada/BookStore --skill run-integration-tests-aalmada

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill automates end-to-end validation of the BookStore application by running the Aspire AppHost integration tests.

Core Features & Use Cases

  • Execute the complete integration suite against the BookStore AppHost to confirm system-wide behavior after changes.
  • Analyze results and pinpoint failing scenarios with detailed logs to guide debugging.
  • Use Case: After a deployment, run the tests to ensure core workflows like creating orders, managing inventory, and user authentication behave as expected.

Quick Start

Navigate to the test project: cd tests/BookStore.AppHost.Tests Run the integration tests: dotnet test Review results in TestResults or build logs.

Frequently Asked Questions about run-integration-tests

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run end-to-end integration tests for a .NET Aspire AppHost?

Run end-to-end integration tests for a .NET Aspire AppHost by navigating to the tests/BookStore.AppHost.Tests directory and executing the dotnet test command to validate system-wide behavior.

What do I need to execute integration tests using dotnet test?

Executing integration tests using dotnet test requires the .NET SDK, dotnet test tooling, and access to the test project directory to generate actionable diagnostic logs in the TestResults folder.

How does automated integration testing verify system health after deployment?

Automated integration testing verifies system health after deployment by executing the complete integration suite against the BookStore AppHost to confirm core workflows like order creation and user authentication behave as expected.

How do I pinpoint failing scenarios in Asp.NET integration tests?

Pinpoint failing scenarios in ASP.NET integration tests by reviewing the detailed logs and actionable diagnostics generated in the TestResults directory or build logs after running the dotnet test command.

Why are my AppHost integration tests not working in the BookStore application?

AppHost integration tests in the BookStore application may not work due to missing .NET SDK dependencies or incorrect directory context, so ensure you are in tests/BookStore.AppHost.Tests before running dotnet test.