import { exec } from 'child_process'; import { promisify } from 'util'; const execAsync = promisify(exec); export async function resetDatabase(): Promise { await execAsync('cd .. && ./test_db.sh'); }