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:
parent
b6bc10d680
commit
05545dea59
|
|
@ -46,6 +46,14 @@ const MockTeamStatisticsRepository = {
|
||||||
useValue: {
|
useValue: {
|
||||||
findByUserId: async () => ({
|
findByUserId: async () => ({
|
||||||
userId: '',
|
userId: '',
|
||||||
|
accountSequence: BigInt(0),
|
||||||
|
totalTeamPlantingCount: 0,
|
||||||
|
getProvinceTeamCount: () => 0,
|
||||||
|
getCityTeamCount: () => 0,
|
||||||
|
}),
|
||||||
|
findByAccountSequence: async () => ({
|
||||||
|
userId: '',
|
||||||
|
accountSequence: BigInt(0),
|
||||||
totalTeamPlantingCount: 0,
|
totalTeamPlantingCount: 0,
|
||||||
getProvinceTeamCount: () => 0,
|
getProvinceTeamCount: () => 0,
|
||||||
getCityTeamCount: () => 0,
|
getCityTeamCount: () => 0,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue