This commit is contained in:
Norbert de Langen 2023-01-30 14:50:40 +01:00
parent f5d8eaccae
commit 97d12d3f31
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762

View File

@ -29,6 +29,9 @@ jest.mock('fs-extra', () => {
pathExists: jest.fn((p: string) => {
return false;
}),
existsSync: jest.fn((p: string) => {
return false;
}),
};
});