mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-03-29 23:14:57 +00:00
test: fix eslint arrow-body-style in claude-console account tests
This commit is contained in:
@@ -6,9 +6,9 @@ jest.mock('../src/middleware/auth', () => ({
|
||||
}))
|
||||
|
||||
jest.mock('../src/services/relay/claudeConsoleRelayService', () => ({
|
||||
testAccountConnection: jest.fn(async (accountId, res) => {
|
||||
return res.status(200).json({ success: true, accountId })
|
||||
})
|
||||
testAccountConnection: jest.fn(async (accountId, res) =>
|
||||
res.status(200).json({ success: true, accountId })
|
||||
)
|
||||
}))
|
||||
|
||||
jest.mock('../src/services/account/claudeConsoleAccountService', () => ({}))
|
||||
|
||||
Reference in New Issue
Block a user