5 lines
199 B
TypeScript
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`);
|