Test Case Analysis
April 2, 2026 ยท View on GitHub
This repository contains the local.test-case-analysis VS Code extension.
Current state
- Adds a
Test Case Analysisview container to the Activity Bar - Provides commands for selecting test files or folders
- Supports profiling tests and running tests more efficiently
- Includes VSIX packaging and install scripts for local testing
Prerequisites
- Install Node.js so that
npmis available. - Run
npm installonce in the project root.
Build and install the extension on Windows/Linux
Create a VSIX package:
npm run vsix
Create the VSIX and install it into VS Code:
npm run vsix:install
This generates a file test-case-analysis-0.0.1.vsix in the project root.
Build and install the extension on Mac
Create a VSIX package:
npx vsce package
This command creates a .vsix package in the project root.
To install the extension from the generated .vsix file in Visual Studio Code:
- Open Visual Studio Code.
- Open the Command Palette.
- Run
Extensions: Install from VSIX.... - Select the generated
.vsixfile from the repository root.