com um clique
focused-test-selection
Select the smallest meaningful build and test slice to verify a change with minimal cost.
Menu
Select the smallest meaningful build and test slice to verify a change with minimal cost.
| name | focused-test-selection |
| description | Select the smallest meaningful build and test slice to verify a change with minimal cost. |
Use when:
Choose the smallest meaningful build/test slice that can falsify the change.
Build only:
dotnet build FenBrowser.FenEngine/FenBrowser.FenEngine.csproj -c Debug -v minimalFocused tests:
dotnet test FenBrowser.Tests/FenBrowser.Tests.csproj --filter "FullyQualifiedName~NameOfRelevantTests" --logger "console;verbosity=minimal"Rendering checks:
debug_screenshot.pngdom_dump.txtlogs/fenbrowser_*.logReview browser diffs for correctness, regression risk, architecture drift, and verification impact.
Triage build failures from logs and apply the smallest correct fix at the first meaningful error.
Diagnose CSS and layout mismatches by locating the earliest broken rendering stage.
Update only affected canonical FenBrowser docs when behavior, architecture, or workflow changes.
Triage HTML parser issues by isolating tokenization/tree-construction failures with minimal scope.
Triage JavaScript runtime issues by isolating the first failing execution stage and applying focused fixes.