gitlab-org--gitlab-foss/spec/frontend/sidebar/components/incidents/escalation_utils_spec.js

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');
});
});
});