mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 00:50:23 -05:00
remove async
This commit is contained in:
parent
1ea61f0573
commit
84ab5abac4
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ export const makeMockWatcher =
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return async () => await close?.();
|
return () => close?.();
|
||||||
};
|
};
|
||||||
|
|
||||||
export const newStorageRepositoryMock = (reset = true): jest.Mocked<IStorageRepository> => {
|
export const newStorageRepositoryMock = (reset = true): jest.Mocked<IStorageRepository> => {
|
||||||
|
|
Loading…
Reference in a new issue