chore: format auth code and update runtime
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user