forked from claude-did-this/claude-hub
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:
@@ -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();
|
||||
|
||||
|
||||
@@ -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\''
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user