What problem does it solve? Running the right subset of unit tests in the VS Code repository is confusing: there are multiple entry points (the runTests tool, test.sh, test.bat), different filtering flags, and a compilation prerequisite that causes misleading failures when forgotten. This Skill consolidates the correct commands and options so tests run the first time. ## Core Features & Use Cases - Structured test execution: Prefers the runTests tool with file paths, test name filters, and coverage mode for detailed pass/fail output. - Shell script fallback: Documents scripts/test.sh (macOS/Linux) and scripts/test.bat (Windows) with options like --run, --grep, --runGlob, --coverage, and --timeout. - Use Case: You changed src/vs/editor and want to verify only the affected tests. Run the specific test file with a --grep filter instead of the entire suite, then add --coverage to check your new code is exercised. ## Quick Start Run the unit tests in src/vs/editor/test/common/model.test.ts filtered to the test named "should split lines".