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 = { module.exports = {
__esModule: true, execa: jest.fn(async (cmd, args, options) => {
execa: jest.fn().mockResolvedValue({ stdout: '', stderr: '' }) return { stdout: '', stderr: '' };
})
}; };