mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
1ea55d642e
feat: start microservices in worker thread and add internal microservices for the server
18 lines
436 B
TypeScript
18 lines
436 B
TypeScript
import { ILoggerRepository } from 'src/interfaces/logger.interface';
|
|
import { Mocked, vitest } from 'vitest';
|
|
|
|
export const newLoggerRepositoryMock = (): Mocked<ILoggerRepository> => {
|
|
return {
|
|
setLogLevel: vitest.fn(),
|
|
setContext: vitest.fn(),
|
|
setAppName: vitest.fn(),
|
|
|
|
verbose: vitest.fn(),
|
|
debug: vitest.fn(),
|
|
log: vitest.fn(),
|
|
warn: vitest.fn(),
|
|
error: vitest.fn(),
|
|
fatal: vitest.fn(),
|
|
};
|
|
};
|