mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
25 lines
750 B
TypeScript
25 lines
750 B
TypeScript
import { IntegrityService } from 'src/services/integrity.service';
|
|
import { newTestService, ServiceMocks } from 'test/utils';
|
|
|
|
describe(IntegrityService.name, () => {
|
|
let sut: IntegrityService;
|
|
// impl. pending
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
let mocks: ServiceMocks;
|
|
|
|
beforeEach(() => {
|
|
({ sut, mocks } = newTestService(IntegrityService));
|
|
});
|
|
|
|
it('should work', () => {
|
|
expect(sut).toBeDefined();
|
|
});
|
|
|
|
describe.skip('getIntegrityReportSummary'); // just calls repository
|
|
describe.skip('getIntegrityReport'); // just calls repository
|
|
describe.skip('getIntegrityReportCsv'); // just calls repository
|
|
|
|
describe.todo('getIntegrityReportFile');
|
|
describe.todo('deleteIntegrityReport');
|
|
});
|