From 601d350ebf9e47fc6ab0211d3b983f12a709afc0 Mon Sep 17 00:00:00 2001 From: Ilyes Ben Dlala Date: Tue, 4 Jul 2023 14:46:44 +0200 Subject: [PATCH] #1607 Added missing test:unit and test:integration scripts to test-scan i.e ~/tests/integration/package.json Signed-off-by: Ilyes Ben Dlala --- tests/integration/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration/package.json b/tests/integration/package.json index 81becf309d..acbcba30d1 100644 --- a/tests/integration/package.json +++ b/tests/integration/package.json @@ -4,7 +4,8 @@ "description": "Integration Tests running on a real k8s cluster", "main": "helpers", "scripts": { - "test": "jest" + "test:unit": "jest --verbose --testPathIgnorePatterns /integration-tests/ --ci --colors --coverage --passWithNoTests", + "test:integration": "jest --verbose --ci --colors --coverage --passWithNoTests" }, "keywords": [], "author": "iteratec GmbH",