lilith-platform.live/codebase/@features/api/scripts/drop-test-dbs.ts
2026-04-25 18:29:06 -07:00

5 lines
199 B
TypeScript

#!/usr/bin/env bun
import { dropAllThrowawayTestDbs } from '@/__tests__/test-db';
const dropped = await dropAllThrowawayTestDbs();
process.stdout.write(`dropped ${dropped} throwaway test db(s)\n`);