feat: unit tests for buildArgs and Notify

This commit is contained in:
MasterAcnolo
2026-08-02 09:25:05 +02:00
parent 596a06a59d
commit 72c152d964
5 changed files with 4687 additions and 1735 deletions

9
jest.config.js Normal file
View File

@@ -0,0 +1,9 @@
module.exports = {
testEnvironment: "node",
testMatch: ["**/test/unit/**/*.test.js"],
collectCoverageFrom: [
"server/**/*.js",
"app/**/*.js",
"!app/autoUpdater.js",
],
};