From 9473ff8434428b51be7c591a01e59e179f12101a Mon Sep 17 00:00:00 2001 From: wujunchen Date: Thu, 14 May 2026 10:19:46 +0800 Subject: [PATCH] style: apply biome formatter to cli.test.js Change-Id: I52932009843be1d12872066bf462e01f119ab028 --- tests/cli.test.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/cli.test.js b/tests/cli.test.js index 9d2f2f6..529e449 100644 --- a/tests/cli.test.js +++ b/tests/cli.test.js @@ -263,10 +263,7 @@ async function testClaudeCodeArgs() { 'stream-json', 'claude output should stream JSON events', ); - assert.ok( - capturedArgs.includes('--verbose'), - 'stream-json requires --verbose in Claude CLI 2.1.131+', - ); + assert.ok(capturedArgs.includes('--verbose'), 'stream-json requires --verbose in Claude CLI 2.1.131+'); assert.ok(capturedArgs.includes('--append-system-prompt'), 'should include --append-system-prompt'); assert.ok(capturedArgs.includes('--tools'), 'should explicitly restrict Claude tools'); assert.strictEqual(capturedArgs[capturedArgs.indexOf('--tools') + 1], '', 'Claude tools should be disabled');