1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-06 09:19:22 +02:00

Chore: Change the return type of shim.fsDriver() from any to FsDriverBase (#9460)

This commit is contained in:
Henry Heino
2023-12-06 11:24:00 -08:00
committed by GitHub
parent 48ea014ee0
commit d63fc524bf
6 changed files with 35 additions and 14 deletions

View File

@@ -38,7 +38,7 @@ describe('routes/notes', () => {
jest.spyOn(shim, 'fsDriver').mockImplementation(() => {
return {
copy: fsDriverCopySpy,
};
} as any;
});
jest.spyOn(uuid, 'create').mockReturnValue('mocked_uuid_value');