lilith-platform.live/codebase/@features/api/scripts/drop-test-dbs.ts

6 lines
199 B
TypeScript
Raw Normal View History

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