chore(lint): burn down remaining warnings to zero

This commit is contained in:
William Valentin
2026-02-15 23:14:21 -08:00
parent 49b752e8b0
commit 948d4ac6d8
67 changed files with 235 additions and 256 deletions
+3 -2
View File
@@ -83,8 +83,9 @@ describe('BedrockClient', () => {
expect(response.stopReason).toBe('tool_use');
expect(response.toolCalls).toHaveLength(1);
expect(response.toolCalls![0].name).toBe('shell.exec');
expect(response.toolCalls![0].args).toEqual({ command: 'ls' });
const firstToolCall = response.toolCalls?.[0];
expect(firstToolCall?.name).toBe('shell.exec');
expect(firstToolCall?.args).toEqual({ command: 'ls' });
});
it('uses default region when none provided', async () => {