mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 22:51:59 +00:00
21 lines
671 B
TypeScript
21 lines
671 B
TypeScript
import { IJobRepository } from 'src/interfaces/job.interface';
|
|
import { Mocked, vitest } from 'vitest';
|
|
|
|
export const newJobRepositoryMock = (): Mocked<IJobRepository> => {
|
|
return {
|
|
setup: vitest.fn(),
|
|
startWorkers: vitest.fn(),
|
|
run: vitest.fn(),
|
|
setConcurrency: vitest.fn(),
|
|
empty: vitest.fn(),
|
|
pause: vitest.fn(),
|
|
resume: vitest.fn(),
|
|
queue: vitest.fn().mockImplementation(() => Promise.resolve()),
|
|
queueAll: vitest.fn().mockImplementation(() => Promise.resolve()),
|
|
getQueueStatus: vitest.fn(),
|
|
getJobCounts: vitest.fn(),
|
|
clear: vitest.fn(),
|
|
waitForQueueCompletion: vitest.fn(),
|
|
removeJob: vitest.fn(),
|
|
};
|
|
};
|