mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 10:56:47 +01:00
50c9bc0336
* chore: jest => vitest * chore: replace jest-when
17 lines
534 B
TypeScript
17 lines
534 B
TypeScript
import { SystemConfigCore } from 'src/cores/system-config.core';
|
|
import { ISystemConfigRepository } from 'src/interfaces/system-config.interface';
|
|
import { Mocked, vitest } from 'vitest';
|
|
|
|
export const newSystemConfigRepositoryMock = (reset = true): Mocked<ISystemConfigRepository> => {
|
|
if (reset) {
|
|
SystemConfigCore.reset();
|
|
}
|
|
|
|
return {
|
|
fetchStyle: vitest.fn(),
|
|
load: vitest.fn().mockResolvedValue([]),
|
|
readFile: vitest.fn(),
|
|
saveAll: vitest.fn().mockResolvedValue([]),
|
|
deleteKeys: vitest.fn(),
|
|
};
|
|
};
|