style: fix biome formatting

This commit is contained in:
Peter Steinberger
2026-01-10 02:11:43 +00:00
parent afe6f182ca
commit 003cda73e8
5 changed files with 32 additions and 15 deletions

View File

@@ -5,7 +5,10 @@ import { parseConfigCommand } from "./config-commands.js";
describe("parseConfigCommand", () => {
it("parses show/unset", () => {
expect(parseConfigCommand("/config")).toEqual({ action: "show" });
expect(parseConfigCommand("/config show")).toEqual({ action: "show", path: undefined });
expect(parseConfigCommand("/config show")).toEqual({
action: "show",
path: undefined,
});
expect(parseConfigCommand("/config show foo.bar")).toEqual({
action: "show",
path: "foo.bar",