mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
11 lines
165 B
JavaScript
11 lines
165 B
JavaScript
|
|
jest.mock('~/config', () => {
|
||
|
|
return {
|
||
|
|
logger: {
|
||
|
|
info: jest.fn(),
|
||
|
|
warn: jest.fn(),
|
||
|
|
debug: jest.fn(),
|
||
|
|
error: jest.fn(),
|
||
|
|
},
|
||
|
|
};
|
||
|
|
});
|