test: remove duplicate systemd exec-start split case

This commit is contained in:
Peter Steinberger
2026-02-16 06:21:13 +00:00
parent 1be7c4ba8e
commit da2bdbef7e

View File

@@ -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",
]);
});
});