chore: format auth code and update runtime

This commit is contained in:
2026-07-29 22:11:08 -04:00
parent 892479dceb
commit 22e6e721a7
9 changed files with 132 additions and 73 deletions
+8 -2
View File
@@ -23,7 +23,9 @@ test("Docker image starts against PostgreSQL and applies migrations", async (t)
t.skip("Docker daemon is unavailable");
return;
}
const temp = await mkdtemp(path.join(os.tmpdir(), "roast-planner-container-"));
const temp = await mkdtemp(
path.join(os.tmpdir(), "roast-planner-container-"),
);
const agentDir = path.join(temp, "pi-agent");
await mkdir(agentDir);
const envFile = path.join(temp, "compose.env");
@@ -66,7 +68,11 @@ test("Docker image starts against PostgreSQL and applies migrations", async (t)
await new Promise((resolve) => setTimeout(resolve, 1_000));
}
}
assert.equal(lastError, null, "application never became ready in its container");
assert.equal(
lastError,
null,
"application never became ready in its container",
);
const migration = await compose([
"exec",
"-T",