chore(lint): apply biome fixes

This commit is contained in:
Peter Steinberger
2026-01-04 19:08:22 +01:00
parent e005dcb8e7
commit 0716a624a8
5 changed files with 19 additions and 9 deletions

View File

@@ -51,13 +51,13 @@ describe("cli program", () => {
expect(statusCommand).toHaveBeenCalled();
});
it("runs config alias as configure", async () => {
it("runs config alias as configure", async () => {
const program = buildProgram();
await program.parseAsync(["config"], { from: "user" });
expect(configureCommand).toHaveBeenCalled();
});
it("runs nodes list and calls node.pair.list", async () => {
it("runs nodes list and calls node.pair.list", async () => {
callGateway.mockResolvedValue({ pending: [], paired: [] });
const program = buildProgram();
runtime.log.mockClear();