diff --git a/src/daemon/systemd.test.ts b/src/daemon/systemd.test.ts index a5be470af..80cdc43fd 100644 --- a/src/daemon/systemd.test.ts +++ b/src/daemon/systemd.test.ts @@ -189,15 +189,4 @@ describe("parseSystemdExecStart", () => { "My Bot", ]); }); - - it("parses path arguments", () => { - const execStart = "/usr/bin/openclaw gateway start --path /tmp/openclaw"; - expect(parseSystemdExecStart(execStart)).toEqual([ - "/usr/bin/openclaw", - "gateway", - "start", - "--path", - "/tmp/openclaw", - ]); - }); });