Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
sleidig committed Feb 11, 2025
1 parent cb0b8bb commit 853ce0f
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ describe('ChangesController', () => {
childDoc,
deletedChildDoc,
]);
const user: UserInfo = { name: 'username', roles: [], projects: [] };
const user: UserInfo = {
id: 'user-id',
name: 'username',
roles: [],
projects: [],
};
const mockCouchdbService = { get: () => undefined } as CouchdbService;
const getSpy = jest.spyOn(mockCouchdbService, 'get');
const mockRulesService = {
Expand Down

0 comments on commit 853ce0f

Please sign in to comment.