From a066a0ae9fdbea3c4d891ab27b698f0bbf9d5a30 Mon Sep 17 00:00:00 2001 From: coaxial Date: Thu, 23 Oct 2025 15:20:48 +0200 Subject: [PATCH] test: add Jest dev dependency and npm test script --- package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a608d81..560ee99 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,11 @@ "version": "1.0.0", "private": true, "scripts": { - "lint": "eslint ." + "lint": "eslint .", + "test": "jest" }, "devDependencies": { - "eslint": "^8.0.0" + "eslint": "^8.0.0", + "jest": "^29.0.0" } }