Fix unit test

These additional methods are used in find-up and must be present in the mock `fs`
This commit is contained in:
Ian VanSchooten 2022-04-02 22:13:03 -04:00
parent 9b6748b994
commit 534e618557

View File

@ -15,6 +15,9 @@ jest.mock('./js-package-manager', () => ({
jest.mock('fs', () => ({
existsSync: jest.fn(),
stat: jest.fn(),
lstat: jest.fn(),
access: jest.fn(),
}));
jest.mock('path', () => ({