Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 973 Bytes

File metadata and controls

43 lines (31 loc) · 973 Bytes

Testing webcmd

Core Checks

npm run typecheck
npm run build
npm run build-plugin-manifest
npm test

npm run build must run before plugin tests because repository plugins import the compiled public package exports. The core package contains no site adapters; npm test runs the unit and generic plugin projects.

Skill Sources

Bundled skills are generated from skill-src/ with litprompt. After editing a *.src.md file:

make build
make verify

Focused Checks

npx vitest run --project unit src/skills.test.ts
npx vitest run --project unit src/package-exports.test.ts
npx vitest run --project unit src/convention-audit.test.ts src/runtime-copy.test.ts
npm run test:plugin -- --reporter=verbose

Cloak Runtime Smoke

Run:

npx vitest run --project e2e tests/e2e/cloak-runtime.test.ts

The first run may download the CloakBrowser Chromium binary. Browser-backed tests no longer require a Chrome extension.