style: format db.test.ts

This commit is contained in:
ejclaw
2026-04-10 14:07:04 +09:00
parent 126ca85bdf
commit c0ec9fa8ef

View File

@@ -746,7 +746,9 @@ describe('task CRUD', () => {
const migratedDb = new Database(dbPath, { readonly: true });
try {
const remainingLogs = migratedDb
.prepare(`SELECT COUNT(*) AS count FROM task_run_logs WHERE task_id = ?`)
.prepare(
`SELECT COUNT(*) AS count FROM task_run_logs WHERE task_id = ?`,
)
.get('task-legacy-orphan') as { count: number };
const fkViolations = migratedDb.prepare('PRAGMA foreign_key_check').all();