From 158a434278abd8cb8e33f22a18ff8af4dc3456fb Mon Sep 17 00:00:00 2001
From: Daniel Rainer <daniel.m.rainer@student.uibk.ac.at>
Date: Tue, 1 Mar 2022 19:29:28 +0100
Subject: [PATCH] Prevent test failures from being hidden

Also remove listing the test result directory.
---
 .gitlab-ci.yml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2c4f62fe9..9306aed7b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -62,8 +62,7 @@ frontend-test:
   stage: test
   script:
     - npm install
-    - npm test || FAILED=true
-    - ls -Rl target/test-results
+    - npm test
   artifacts:
     reports:
       junit: target/test-results/TESTS-results-jest.xml
-- 
GitLab