mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 02:49:01 -07:00
6c7679714b
* refactor: jobs and processors * refactor: storage migration processor * fix: tests * fix: code warning * chore: ignore coverage from infra * fix: sync move asset logic between job core and asset core * refactor: move error handling inside of catch * refactor(server): job core into dedicated service calls * refactor: smart info * fix: tests * chore: smart info tests * refactor: use asset repository * refactor: thumbnail processor * chore: coverage reqs
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
jest.mock('@nestjs/common', () => ({
|
|
...jest.requireActual('@nestjs/common'),
|
|
Logger: jest.fn().mockReturnValue({
|
|
verbose: jest.fn(),
|
|
debug: jest.fn(),
|
|
log: jest.fn(),
|
|
info: jest.fn(),
|
|
warn: jest.fn(),
|
|
error: jest.fn(),
|
|
}),
|
|
}));
|