From 1d75132bab8e785f2989d2e91979e24701e1b5fa Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 07:58:10 +0000 Subject: [PATCH] Add tests, templates, and Gitea Actions workflows --- .tests/__mocks__/execa.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .tests/__mocks__/execa.js diff --git a/.tests/__mocks__/execa.js b/.tests/__mocks__/execa.js new file mode 100644 index 0000000..d216710 --- /dev/null +++ b/.tests/__mocks__/execa.js @@ -0,0 +1,5 @@ +module.exports = { + execa: jest.fn(async (cmd, args, options) => { + return { stdout: '', stderr: '' }; + }) +};