Skip to content
Snippets Groups Projects
Commit e5c1e176 authored by Reinder Kraaij's avatar Reinder Kraaij :eye:
Browse files

allow failure on ci image

parent 35028974
No related branches found
No related tags found
1 merge request!1191Resolve TMSS-2810 "Heal skipped tests"
...@@ -116,7 +116,7 @@ prepare_ci_mac_docker_image: ...@@ -116,7 +116,7 @@ prepare_ci_mac_docker_image:
script: 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 . - 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 interruptible: true
allow_failure: true
# #
# BUILD STAGE # BUILD STAGE
# #
......
...@@ -47,7 +47,7 @@ describe('getZoomTimes', () => { ...@@ -47,7 +47,7 @@ describe('getZoomTimes', () => {
expect(result.start.format('HH:mm:ss')).toEqual('00:00:00'); expect(result.start.format('HH:mm:ss')).toEqual('00:00:00');
expect(result.end.format('HH:mm:ss')).toEqual('23:59:59'); 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', () => { it('returns calculated times when selectedZoomLevel has minutes', () => {
const selectedZoomLevel = { hours: 0, minutes: 30 }; const selectedZoomLevel = { hours: 0, minutes: 30 };
...@@ -60,7 +60,7 @@ describe('getZoomTimes', () => { ...@@ -60,7 +60,7 @@ describe('getZoomTimes', () => {
expect(result.start.format('HH:mm:ss')).toEqual(expectedStart); expect(result.start.format('HH:mm:ss')).toEqual(expectedStart);
expect(result.end.format('HH:mm:ss')).toEqual(expectedEnd); 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', () => { it('returns calculated times when selectedZoomLevel has hours', () => {
const selectedZoomLevel = { hours: 3, minutes: 0 }; const selectedZoomLevel = { hours: 3, minutes: 0 };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment