Run Test Command
Runs unit tests and analyzes failures.
Usage
/run-test [scope]
/run-test -> All tests
/run-test poweroffice -> Specific module
/run-test fix -> Analyze and fix failures
Execution
cd d:\SourceCode\Amplifai.Bifrost\src\Amplifai.Bifrost.Tests
dotnet test --filter "FullyQualifiedName~Module"
Diagnosis Workflow
- Run Tests: Capture output.
- Categorize Error: Build, Runtime, or Assertion.
- Analyze Context: Check recent changes.
- Propose/Apply Fix:
- Add missing project refs.
- Fix using statements.
- Initialize required props.
- Update assertions.