From f445ee5979121ea6cf9ecc8c0f30742b84369a7d Mon Sep 17 00:00:00 2001 From: aelassas Date: Tue, 12 Nov 2024 17:42:16 +0100 Subject: [PATCH] Fix jest --- api/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/package.json b/api/package.json index 43cb17996..5b1b222b7 100644 --- a/api/package.json +++ b/api/package.json @@ -8,7 +8,7 @@ "dev": "nodemon", "build": "rimraf dist && cross-env NODE_OPTIONS=--max-old-space-size=1024 tsc --build --verbose && babel dist -d dist", "start": "npm run build && node dist/src", - "test": "rimraf coverage && npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage", + "test": "rimraf coverage && npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --no-cache", "lint": "eslint --ext .ts .", "ncu": "ncu -u -x typescript,eslint,@types/express" },