To verify the application's end-to-end functionality using the Aspire AppHost tests:
- •Navigate to the test project:
bash
cd tests/BookStore.AppHost.Tests
// turbo
2. Run Integration Tests
Run dotnet test to execute the full integration suite.
- •Analyze Results
- •Pass: Confirm to the user that all integration scenarios are working.
- •Fail: Look at the failed test names and stack traces.
- •Use
read_fileto read the failing test source code. - •Check the test logs (often captured in
TestResultsor standard output) for specific error details like assertion failures or timeouts.
- •Use
Related Skills
Used By:
- •
/verify-feature- Runs all tests including integration tests - •
/scaffold-test- Creates integration tests that this skill runs
Related:
- •
/run-unit-tests- Run unit tests only - •
/verify-feature- Complete verification workflow
See Also:
- •integration-testing-guide - Aspire testing details
- •scaffold-test - Creating integration tests
- •AppHost.Tests AGENTS.md - Integration test patterns