/** * Tests for intra-endpoint deduplication in the logic scanner. * * Root cause: the endpoint-analyzer emits one DatabaseQuery per DB-access * token (`.from`, `.eq`, `.select`, `.findUnique`, …) in a handler body. * The auth-flow-analyzer then emits one BOLA/IDOR/BFLA/missing-auth finding * per resource-access entry, so a single unauthenticated endpoint with N * access sites previously produced N near-duplicate findings. * * Fix: runLogicScan deduplicates to one finding per (file, endpoint, vulnType) * before returning. * * @module __tests__/scanners/logic/dedup */ export {}; //# sourceMappingURL=dedup.test.d.ts.map