From 8b081d5ba8ce3076e66680c5c53d0ad138d9de77 Mon Sep 17 00:00:00 2001 From: igm Date: Mon, 12 Jan 2026 14:57:28 +0800 Subject: [PATCH] Remove unnecessary testing/README.md Sub-packages test-helpers and virtual-authenticator have their own READMEs. Co-Authored-By: Claude Opus 4.5 --- packages/testing/README.md | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 packages/testing/README.md diff --git a/packages/testing/README.md b/packages/testing/README.md deleted file mode 100644 index 5d79cf3..0000000 --- a/packages/testing/README.md +++ /dev/null @@ -1,34 +0,0 @@ -# Testing Packages - -Shared testing utilities for the RevIQ platform. - -## Packages - -### @reviq/test-helpers - -Database testing utilities including test database setup, transactions, and fixtures. - -```typescript -import { createTestDb, withTestTransaction, describeE2E } from "@reviq/test-helpers"; -``` - -### @reviq/virtual-authenticator - -WebAuthn virtual authenticator for testing passkey flows without real hardware. - -```typescript -import { VirtualAuthenticator } from "@reviq/virtual-authenticator"; -``` - -## Usage - -These packages are used internally for e2e and integration tests. Add them as dev dependencies: - -```json -{ - "devDependencies": { - "@reviq/test-helpers": "workspace:*", - "@reviq/virtual-authenticator": "workspace:*" - } -} -```