6 lines
186 B
JavaScript
6 lines
186 B
JavaScript
module.exports = {
|
|
__esModule: true,
|
|
execa: jest.fn(() => Promise.resolve({ stdout: '', stderr: '' })),
|
|
execaCommand: jest.fn(() => Promise.resolve({ stdout: '', stderr: '' }))
|
|
};
|