style: fix lint formatting

This commit is contained in:
Peter Steinberger
2026-01-09 07:52:28 +01:00
parent 37cbcc97d3
commit 185727c696
7 changed files with 92 additions and 73 deletions

View File

@@ -138,7 +138,9 @@ describe("gateway-cli coverage", () => {
program.exitOverride();
registerGatewayCli(program);
await program.parseAsync(["gateway", "discover", "--json"], { from: "user" });
await program.parseAsync(["gateway", "discover", "--json"], {
from: "user",
});
expect(discoverGatewayBeacons).toHaveBeenCalledTimes(1);
expect(runtimeLogs.join("\n")).toContain('"beacons"');

View File

@@ -48,9 +48,12 @@ describe("cli program", () => {
it("runs message send with required options", async () => {
const program = buildProgram();
await program.parseAsync(["message", "send", "--to", "+1", "--message", "hi"], {
from: "user",
});
await program.parseAsync(
["message", "send", "--to", "+1", "--message", "hi"],
{
from: "user",
},
);
expect(messageSendCommand).toHaveBeenCalled();
});

View File

@@ -8,8 +8,8 @@ import {
import { configureCommand } from "../commands/configure.js";
import { doctorCommand } from "../commands/doctor.js";
import { healthCommand } from "../commands/health.js";
import { onboardCommand } from "../commands/onboard.js";
import { messagePollCommand, messageSendCommand } from "../commands/message.js";
import { onboardCommand } from "../commands/onboard.js";
import { sessionsCommand } from "../commands/sessions.js";
import { setupCommand } from "../commands/setup.js";
import { statusCommand } from "../commands/status.js";