diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 949edc8f30e47b138f35eca22216c33490c7e0bb..fbdd554fafc0b1d7e7153a831fe8e9d9b2c24a8f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -116,7 +116,7 @@ prepare_ci_mac_docker_image:
   script:
     - docker build --build-arg BASE_VERSION=$CI_COMMIT_SHORT_SHA -t ci_mac:$CI_COMMIT_SHORT_SHA -f  Docker/lofar-ci/Dockerfile_ci_mac .
   interruptible: true
-
+  allow_failure: true
 #
 # BUILD STAGE
 #
diff --git a/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/toolbar/zoomandmove.helper.test.js b/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/toolbar/zoomandmove.helper.test.js
index e9486d211392b70e8aeb588869c7661897f5d1ef..aed57ae055fbf02b24cf391605080ca88524f010 100644
--- a/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/toolbar/zoomandmove.helper.test.js
+++ b/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/toolbar/zoomandmove.helper.test.js
@@ -47,7 +47,7 @@ describe('getZoomTimes', () => {
         expect(result.start.format('HH:mm:ss')).toEqual('00:00:00');
         expect(result.end.format('HH:mm:ss')).toEqual('23:59:59');
     });
-    // TODO : Fix Unit Test  returns calculated times when selectedZoomLevel has minutes
+    
 
     it('returns calculated times when selectedZoomLevel has minutes', () => {
         const selectedZoomLevel = { hours: 0, minutes: 30 };
@@ -60,7 +60,7 @@ describe('getZoomTimes', () => {
         expect(result.start.format('HH:mm:ss')).toEqual(expectedStart);
         expect(result.end.format('HH:mm:ss')).toEqual(expectedEnd);
     });
-    // TODO : Fix Unit Test returns calculated times when selectedZoomLevel has hours
+    
     it('returns calculated times when selectedZoomLevel has hours', () => {
         const selectedZoomLevel = { hours: 3, minutes: 0 };