style: fix eslint formatting issues

Auto-fix formatting for switch statement indentation and quote consistency.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jonathan Flatt
2025-05-26 22:49:54 -05:00
parent 0e4d22bcdc
commit c53708b7be
4 changed files with 38 additions and 38 deletions

View File

@@ -73,7 +73,7 @@ describe('Claude Service', () => {
});
// Verify test mode response
expect(result).toContain("Hello! I'm Claude responding to your request.");
expect(result).toContain('Hello! I\'m Claude responding to your request.');
expect(result).toContain('test/repo');
expect(sanitizeBotMentions).toHaveBeenCalled();

View File

@@ -138,7 +138,7 @@ region = us-west-2
process.env.AWS_PROFILE = 'non-existent-profile';
await expect(awsCredentialProvider.getCredentials()).rejects.toThrow(
"Profile 'non-existent-profile' not found"
'Profile \'non-existent-profile\' not found'
);
// Restore AWS_PROFILE
@@ -156,7 +156,7 @@ aws_access_key_id = test-access-key
fs.promises.readFile.mockImplementationOnce(() => Promise.resolve(mockConfigFile));
await expect(awsCredentialProvider.getCredentials()).rejects.toThrow(
"Incomplete credentials for profile 'test-profile'"
'Incomplete credentials for profile \'test-profile\''
);
});
});