@meetquinn/animactl 0.1.7-canary.216.1.29a0c8a → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1237,7 +1237,7 @@ test('kimi-cli ACP transport starts a turn and appends subscription follow-up in
|
|
|
1237
1237
|
const sessionId = state.sessions.anima?.current?.id;
|
|
1238
1238
|
assert.equal(sessionId, 'kimi-session-1');
|
|
1239
1239
|
const args = JSON.parse((await readFile(callsPath, 'utf8')).split('\n')[0] ?? '{}');
|
|
1240
|
-
assert.deepEqual(args.argv, ['acp']);
|
|
1240
|
+
assert.deepEqual(args.argv, ['--yolo', 'acp']);
|
|
1241
1241
|
const calls = (await readFile(callsPath, 'utf8')).trim().split('\n').map((line) => JSON.parse(line));
|
|
1242
1242
|
assert.equal(calls.filter((call) => call.method === 'session/prompt').length, 2);
|
|
1243
1243
|
assert.ok(calls.find((call) => call.method === 'session/prompt')?.params?.prompt?.[0]?.text?.includes('You are Anima'));
|