Add unit tests
Some checks failed
/ test (push) Has been cancelled

This commit is contained in:
2026-02-03 08:23:32 +00:00
parent 1dbb69550f
commit 89a5e7fdd4

View File

@@ -1,4 +1,5 @@
module.exports = {
__esModule: true,
execa: jest.fn().mockResolvedValue({ stdout: '', stderr: '' })
execa: jest.fn(async (cmd, args, options) => {
return { stdout: '', stderr: '' };
})
};