tests: mock remove from fs-extra

This commit is contained in:
Yann Braga 2022-07-25 10:41:30 +02:00
parent e79a8bd22c
commit 0a91e70541

View File

@ -52,6 +52,7 @@ jest.mock('fs-extra', () => ({
emptyDir: jest.fn(() => undefined),
ensureDir: jest.fn(() => undefined),
writeJSON: jest.fn(() => undefined),
remove: jest.fn(() => undefined),
readJSON: jest.fn(() => ({})),
pathExists: jest.fn(() => true),
}));