t1k:web:testing:core
| Field | Value |
|---|---|
| Module | testing |
| Version | 1.7.0 |
| Effort | medium |
| Tools | — |
Keywords: a11y, E2E, integration, k6, load, Playwright, testing, unit, visual, Vitest
How to invoke
Section titled “How to invoke”/t1k:web:testing:core[test-type] [target]Web Testing Skill
Section titled “Web Testing Skill”Comprehensive web testing: unit, integration, E2E, load, security, visual regression, accessibility.
Quick Start
Section titled “Quick Start”npx vitest run # Unit testsnpx playwright test # E2E testsnpx playwright test --ui # E2E with UIk6 run load-test.js # Load testsnpx @axe-core/cli https://example.com # Accessibilitynpx lighthouse https://example.com # PerformanceTesting Strategy (Choose Your Model)
Section titled “Testing Strategy (Choose Your Model)”| Model | Structure | Best For |
|---|---|---|
| Pyramid | Unit 70% > Integration 20% > E2E 10% | Monoliths |
| Trophy | Integration-heavy | Modern SPAs |
| Honeycomb | Contract-centric | Microservices |
→ ./references/testing-pyramid-strategy.md
Reference Documentation
Section titled “Reference Documentation”Core Testing
Section titled “Core Testing”./references/unit-integration-testing.md- Vitest, browser mode, AAA./references/e2e-testing-playwright.md- Fixtures, sharding, selectors./references/playwright-component-testing.md- CT patterns (production-ready)./references/component-testing.md- React/Vue/Angular patterns
Test Infrastructure
Section titled “Test Infrastructure”./references/test-data-management.md- Factories, fixtures, seeding./references/database-testing.md- Testcontainers, transactions./references/ci-cd-testing-workflows.md- GitHub Actions, sharding./references/contract-testing.md- Pact, MSW patterns
Cross-Browser & Mobile
Section titled “Cross-Browser & Mobile”./references/cross-browser-checklist.md- Browser/device matrix./references/mobile-gesture-testing.md- Touch, swipe, orientation
Performance & Quality
Section titled “Performance & Quality”./references/performance-core-web-vitals.md- LCP/CLS/INP, Lighthouse CI./references/visual-regression.md- Screenshot comparison./references/test-flakiness-mitigation.md- Stability strategies
Accessibility & Security
Section titled “Accessibility & Security”./references/accessibility-testing.md- WCAG, axe-core./references/security-testing-overview.md- OWASP Top 10./references/security-checklists.md- Auth, API, headers
API & Load
Section titled “API & Load”./references/api-testing.md- Supertest, GraphQL./references/load-testing-k6.md- k6 patterns
Checklists
Section titled “Checklists”./references/pre-release-checklist.md- Complete release checklist./references/functional-testing-checklist.md- Feature testing
Scripts
Section titled “Scripts”Initialize Playwright Project
Section titled “Initialize Playwright Project”node ./scripts/init-playwright.js [--ct] [--dir <path>]Creates best-practice Playwright setup: config, fixtures, example tests.
Analyze Test Results
Section titled “Analyze Test Results”node ./scripts/analyze-test-results.js \ --playwright test-results/results.json \ --vitest coverage/vitest.json \ --output markdownParses Playwright/Vitest/JUnit results into unified summary.
CI/CD Integration
Section titled “CI/CD Integration”jobs: test: steps: - run: npm run test:unit # Gate 1: Fast fail - run: npm run test:e2e # Gate 2: After unit pass - run: npm run test:a11y # Accessibility - run: npx lhci autorun # PerformanceGotchas
Section titled “Gotchas”- Playwright
page.waitForLoadState('networkidle')flakes on apps with long-poll — switch to explicit element-visible waits. - Vitest in
--watchmode caches modules aggressively — clear cache between test runs that mutate file system. - k6 default thresholds suppress real failures — explicit
http_req_failed{rate:<0.01}thresholds, never accept defaults.