Manage SystemManagers

This commit is contained in:
Bastian Wagner
2025-01-02 13:16:45 +01:00
parent bf64103369
commit efbfc2eb01
18 changed files with 266 additions and 23 deletions

View File

@@ -19,7 +19,8 @@ export class MockUserRepository {
},
isActive: false,
role: null,
systems: []
systems: [],
deletedAt: null
}
findByUsername = jest.fn().mockImplementation((username: string) => {
@@ -42,7 +43,8 @@ export class MockUserRepository {
},
isActive: false,
role: null,
systems: []
systems: [],
deletedAt: null
}
return user;
})