style: apply oxfmt

This commit is contained in:
Peter Steinberger
2026-01-17 18:32:15 +00:00
parent 7a3fa9ce03
commit 534a012a4e
6 changed files with 11 additions and 15 deletions

View File

@@ -114,9 +114,7 @@ export async function gatherDaemonStatus(
const [loaded, command, runtime] = await Promise.all([
service.isLoaded({ env: process.env }).catch(() => false),
service.readCommand(process.env).catch(() => null),
service
.readRuntime(process.env)
.catch((err) => ({ status: "unknown", detail: String(err) })),
service.readRuntime(process.env).catch((err) => ({ status: "unknown", detail: String(err) })),
]);
const configAudit = await auditGatewayServiceConfig({
env: process.env,

View File

@@ -55,9 +55,7 @@ describe("memory cli", () => {
expect(log).toHaveBeenCalledWith(expect.stringContaining("Vector: ready"));
expect(log).toHaveBeenCalledWith(expect.stringContaining("Vector dims: 1024"));
expect(log).toHaveBeenCalledWith(
expect.stringContaining("Vector path: /opt/sqlite-vec.dylib"),
);
expect(log).toHaveBeenCalledWith(expect.stringContaining("Vector path: /opt/sqlite-vec.dylib"));
});
it("prints vector error when unavailable", async () => {