• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mendersoftware / mender-server / 14380

21 Apr 2026 07:30AM UTC coverage: 48.309%. Remained the same
14380

Pull #1667

gitlab-ci

mineralsfree
chore(gui): removed dropped property in child tenant creation endpoint

Signed-off-by: Mikita Pilinka <mikita.pilinka@northern.tech>
Pull Request #1667: Fix/spec alignment

4079 of 5746 branches covered (70.99%)

Branch coverage included in aggregate %.

65303 of 137875 relevant lines covered (47.36%)

5.48 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/frontend/src/js/components/deployments/progress/DeploymentStatusNotification.tsx
1
// Copyright 2026 Northern.tech AS
1✔
2
//
1✔
3
//    Licensed under the Apache License, Version 2.0 (the "License");
1✔
4
//    you may not use this file except in compliance with the License.
1✔
5
//    You may obtain a copy of the License at
1✔
6
//
1✔
7
//        http://www.apache.org/licenses/LICENSE-2.0
1✔
8
//
1✔
9
//    Unless required by applicable law or agreed to in writing, software
1✔
10
//    distributed under the License is distributed on an "AS IS" BASIS,
1✔
11
//    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1✔
12
//    See the License for the specific language governing permissions and
1✔
13
//    limitations under the License.
1✔
14
import { PendingOutlined as QueuedIcon, RotateLeftOutlined } from '@mui/icons-material';
1✔
15
import { Typography } from '@mui/material';
1✔
16

1✔
17
import { mdiSleep as SleepIcon } from '@mdi/js';
1✔
18
import MaterialDesignIcon from '@northern.tech/common-ui/MaterialDesignIcon';
1✔
19

1✔
20
export const statusMap = {
16✔
21
  complete: {
1✔
22
    icon: <MaterialDesignIcon path={SleepIcon} />,
1✔
23
    description: () => 'Complete, awaiting new devices'
1✔
24
  },
1✔
25
  queued: {
1✔
26
    icon: <QueuedIcon />,
1✔
27
    description: () => 'Queued to start'
358✔
28
  },
1✔
29
  paused: { icon: <RotateLeftOutlined fontSize="inherit" />, description: window => `Paused until next window ${window}` }
1✔
30
};
1✔
31

1✔
32
export const DeploymentStatusNotification = ({ status }: { status: string }) =>
16✔
33
  statusMap[status] ? (
796✔
34
    <Typography variant="body2" className="flexbox align-items-center">
1✔
35
      {statusMap[status].icon}
1✔
36
      <span className="margin-left-small">{statusMap[status].description()}</span>
1✔
37
    </Typography>
1✔
38
  ) : null;
1✔
39

1✔
40
export default DeploymentStatusNotification;
1✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc