From f9668071c759beec9d45de2fa5c28b0fd2db5bb4 Mon Sep 17 00:00:00 2001 From: Alexander Borg Date: Sun, 14 Sep 2025 21:28:19 +0200 Subject: [PATCH] Fix jwt-token --- server/tests/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/tests/package.json b/server/tests/package.json index 09ecafc..2e9e730 100644 --- a/server/tests/package.json +++ b/server/tests/package.json @@ -3,13 +3,13 @@ "version": "1.0.0", "description": "Comprehensive test suite for UAM-ILS drone detection system", "scripts": { - "test": "mocha \"**/*.test.js\" --recursive --timeout 10000 --exit", + "test": "mocha \"**/*.test.js\" --recursive --timeout 10000 --exit --ignore \"node_modules/**\"", "test:unit": "mocha \"{middleware,routes,services,models,utils}/**/*.test.js\" --recursive --timeout 5000", "test:integration": "mocha \"integration/**/*.test.js\" --timeout 15000", "test:performance": "mocha \"performance/**/*.test.js\" --timeout 30000", "test:security": "mocha \"security/**/*.test.js\" --timeout 10000", - "test:watch": "mocha \"**/*.test.js\" --recursive --watch", - "test:coverage": "nyc mocha \"**/*.test.js\" --recursive --timeout 10000", + "test:watch": "mocha \"**/*.test.js\" --recursive --watch --ignore \"node_modules/**\"", + "test:coverage": "nyc mocha \"**/*.test.js\" --recursive --timeout 10000 --ignore \"node_modules/**\"", "test:middleware": "mocha \"middleware/**/*.test.js\" --recursive", "test:routes": "mocha \"routes/**/*.test.js\" --recursive", "test:services": "mocha \"services/**/*.test.js\" --recursive",