style: fix lint formatting
This commit is contained in:
@@ -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"');
|
||||
|
||||
@@ -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();
|
||||
});
|
||||
|
||||
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user