test: fix eslint arrow-body-style in claude-console account tests

This commit is contained in:
Jiahao Luo
2026-03-02 16:10:34 +08:00
parent b78cd35f8b
commit c31b4f4504

View File

@@ -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', () => ({}))