Files
git-agent-sync/tests/__mocks__/execa.js
7000pctAUTO 89a5e7fdd4
Some checks failed
/ test (push) Has been cancelled
Add unit tests
2026-02-03 08:23:32 +00:00

6 lines
115 B
JavaScript

module.exports = {
execa: jest.fn(async (cmd, args, options) => {
return { stdout: '', stderr: '' };
})
};