bun test v1.3.10 (30e609e0)

plugins/lfg/bin/lfg.test.ts:
52 |   })
53 | 
54 |   test("unsupported ulw command explains lfg scope", async () => {
55 |     const result = await runLfg(["--json", "ulw"])
56 |     expect(result.exitCode).toBe(1)
57 |     expect(result.json).toMatchObject({
                             ^
error: expect(received).toMatchObject(expected)

  {
-   "code": "unsupported_command",
-   "command": "ulw",
-   "installerCommand": "npx lazycodex-ai install",
-   "lfgIsPlugin": false,
+   "error": "unknown command: ulw",
    "ok": false,
-   "role": "lazycodex_adapter_installer",
    "status": "error",
  }

- Expected  - 5
+ Received  + 1

      at <anonymous> (/Users/ilseoblee/workspace/linalab/lfg/plugins/lfg/bin/lfg.test.ts:57:25)
(fail) lfg CLI > unsupported ulw command explains lfg scope [25.57ms]
67 |   })
68 | 
69 |   test("unknown command lists supported command names", async () => {
70 |     const result = await runLfg(["--json", "wat"])
71 |     expect(result.exitCode).toBe(1)
72 |     expect(result.json).toMatchObject({
                             ^
error: expect(received).toMatchObject(expected)

  {
-   "code": "unsupported_command",
-   "command": "wat",
+   "error": "unknown command: wat",
    "ok": false,
-   "supportedCommands": [
-     "status",
-     "doctor",
-     "lazycodex install",
-     "lazycodex status",
-     "setup install-plan",
-     "setup show",
-   ],
+   "status": "error",
  }

- Expected  - 10
+ Received  + 2

      at <anonymous> (/Users/ilseoblee/workspace/linalab/lfg/plugins/lfg/bin/lfg.test.ts:72:25)
(fail) lfg CLI > unknown command lists supported command names [20.21ms]

 0 pass
 5 filtered out
 2 fail
 4 expect() calls
Ran 2 tests across 1 file. [64.00ms]

[red-exit=1]
