debian-mirror-gitlab/spec/frontend/sidebar/components/incidents/escalation_utils_spec.js
2022-05-07 20:08:51 +05:30

18 lines
556 B
JavaScript

import { STATUS_ACKNOWLEDGED } from '~/sidebar/components/incidents/constants';
import { getStatusLabel } from '~/sidebar/components/incidents/utils';
describe('EscalationUtils', () => {
describe('getStatusLabel', () => {
it('returns a label when provided with a valid status', () => {
const label = getStatusLabel(STATUS_ACKNOWLEDGED);
expect(label).toEqual('Acknowledged');
});
it("returns 'None' when status is null", () => {
const label = getStatusLabel(null);
expect(label).toEqual('None');
});
});
});