What problem does it solve? Tests that depend on third-party APIs, payment sandboxes, wall clocks, or timezones are slow, flaky, and unrepeatable. This Skill decides what to fake and what to keep real, then stubs the dependency correctly so the suite stops failing for reasons outside your code. ## Core Features & Use Cases - Network interception: Stub or modify HTTP traffic with Playwright route, replay recorded HAR files, or share MSW handlers across unit, component, and browser tests. - Time and environment control: Pin the instant, timezone, and locale together using Playwright clock, Vitest fake timers, or Jest, with recipes for DST, leap-day, and year-boundary cases. - Drift guards and fidelity records: Every mock gets a contract check, HAR refresh command, or unmocked smoke test, plus a written record of what the mock stops catching. - Use Case: A checkout test fails whenever the payment sandbox rate-limits. Use this Skill to route-stub the declined-card and timeout responses, freeze the clock for session-expiry assertions, and record a nightly unmocked smoke test as the drift guard. ## Quick Start Ask the assistant to stabilize a flaky test file by mocking its third-party API calls and pinning the clock and timezone, following the mocking-network-and-time workflow.