Fix stupid mocking error

This commit is contained in:
Nick Cipollo
2023-04-01 18:12:05 -04:00
parent 5a8bbe8ea7
commit eb05307dce
4 changed files with 12 additions and 67 deletions

View File

@@ -21,6 +21,9 @@ jest.mock('fs', () => {
return false
}
}
},
realpathSync: () => {
return false
}
};
})