mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-22 03:10:15 +01:00
ci: fix existing tests based off new permission handling
- Renamed test cases to reflect changes in permission checks being handled at the route level. - Updated assertions to verify that agents are returned regardless of user permissions due to the new permission system. - Adjusted mocks in AppService and PermissionService tests to ensure proper functionality without relying on actual implementations.
This commit is contained in:
parent
c07a342c97
commit
004f128aec
3 changed files with 15 additions and 8 deletions
|
|
@ -100,7 +100,8 @@ beforeEach(async () => {
|
|||
});
|
||||
|
||||
// Mock getUserPrincipals to avoid depending on the actual implementation
|
||||
jest.mock('~/models/userGroupMethods', () => ({
|
||||
jest.mock('~/models', () => ({
|
||||
...jest.requireActual('~/models'),
|
||||
getUserPrincipals: jest.fn(),
|
||||
}));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue