/** * Testing Framework Detector * Detects unit testing (Jest, Vitest) and E2E testing (Playwright, Cypress) */ import type { Detector } from '../../types.js'; /** * Testing framework detector * Returns both unit and e2e test frameworks */ export declare const testingDetector: Detector; export default testingDetector;