style: apply oxfmt
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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 () => {
|
||||
|
||||
Reference in New Issue
Block a user