chore(lint): burn down remaining warnings to zero
This commit is contained in:
@@ -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 () => {
|
||||
|
||||
Reference in New Issue
Block a user