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