Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
e5c1e176
Commit
e5c1e176
authored
1 year ago
by
Reinder Kraaij
Browse files
Options
Downloads
Patches
Plain Diff
allow failure on ci image
parent
35028974
No related branches found
No related tags found
1 merge request
!1191
Resolve TMSS-2810 "Heal skipped tests"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/toolbar/zoomandmove.helper.test.js
+2
-2
2 additions, 2 deletions
...outes/Timeline/helpers/toolbar/zoomandmove.helper.test.js
with
3 additions
and
3 deletions
.gitlab-ci.yml
+
1
−
1
View file @
e5c1e176
...
@@ -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
#
#
...
...
This diff is collapsed.
Click to expand it.
SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/toolbar/zoomandmove.helper.test.js
+
2
−
2
View file @
e5c1e176
...
@@ -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
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment