fix(authorization): add missing findByAccountSequence to MockTeamStatisticsRepository

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-10 16:18:12 -08:00
parent b6bc10d680
commit 05545dea59
1 changed files with 8 additions and 0 deletions

View File

@ -46,6 +46,14 @@ const MockTeamStatisticsRepository = {
useValue: {
findByUserId: async () => ({
userId: '',
accountSequence: BigInt(0),
totalTeamPlantingCount: 0,
getProvinceTeamCount: () => 0,
getCityTeamCount: () => 0,
}),
findByAccountSequence: async () => ({
userId: '',
accountSequence: BigInt(0),
totalTeamPlantingCount: 0,
getProvinceTeamCount: () => 0,
getCityTeamCount: () => 0,