@felmonon/msw-inspector
v0.1.2
Published
Find gaps between your MSW handlers and your actual API usage.
Maintainers
Readme
msw-inspector
Find gaps in your API mock coverage before they reach CI.
MSW handlers drift. API calls get added without mocks, and old mocks stay behind after the code moves on. msw-inspector scans both sides, compares them, and reports what is covered, what is not, and what looks stale.
Install
npm install -D @felmonon/msw-inspectorCLI
Run it from the project root:
npx msw-inspectorOr run it without installing first:
npx @felmonon/msw-inspectorUseful flags:
npx msw-inspector \
--handlers "src/**/*.{ts,tsx,js,jsx,mts,mjs,cjs}" \
--sources "src/**/*.{ts,tsx,js,jsx,mts,mjs,cjs}" \
--exclude "**/dist/**" "**/*.d.ts" \
--report-file msw-inspector.json \
--format textThe CLI prints a human-readable summary by default. Use --format json when you want the full report for CI or a downstream action.
Output
Text output looks like this:
✓ 23 handlers found
✓ 31 API calls found
✗ 8 unmocked endpoints
✗ 3 stale mocks
Coverage: 74% (23/31)The JSON report written by --report-file includes:
{
"schemaVersion": 1,
"summary": {
"mockedCalls": 23,
"totalCalls": 31,
"usedHandlers": 20,
"totalHandlers": 23,
"staleHandlers": 3,
"unmockedCalls": 8,
"percentage": 74.2
}
}Supported patterns
The first release is intentionally narrow:
mswhttp.*handlers- legacy
mswrest.*handlers - handler matchers from string literals, static template literals, static
consts,new URL(...).href,new URL(...).toString(), andString(new URL(...)) fetch(...),window.fetch(...),globalThis.fetch(...)- common
axioscall shapes, includingaxios.get(...),axios.request(...),axios(...), and same-fileaxios.create(...)instances
GitHub Action
The repo ships with a thin GitHub Action wrapper. It reads the JSON report that the CLI already produced, writes a job summary, and can optionally upsert one sticky PR comment.
Because the repository includes action.yml and branding metadata, you can publish this Action to the GitHub Marketplace once you cut a tagged release.
name: msw coverage
on:
pull_request:
push:
jobs:
inspect:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npx msw-inspector --report-file msw-inspector.json --format json
- uses: felmonon/msw-inspector@v1
with:
summary-file: msw-inspector.json
comment: trueThe action does not compute a baseline delta yet. It publishes the current report cleanly and predictably.
Limitations
- It does not try to infer custom wrapper helpers.
- It does not resolve cross-file constants or imported axios instances.
- It does not analyze GraphQL, WebSocket, or SSE handlers.
- It reports dynamic or ambiguous patterns as unsupported instead of guessing.
Local Development
npm install
npm test
npm run typecheck
npm run buildIf you are changing the scanning logic, keep the test fixtures small and explicit. The tool is more useful when it stays opinionated.
