debian-mirror-gitlab/spec/frontend/set_status_modal/utils_spec.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
1.1 KiB
JavaScript
Raw Normal View History

2023-03-17 16:20:25 +05:30
import { isUserBusy, computedClearStatusAfterValue } from '~/set_status_modal/utils';
import { AVAILABILITY_STATUS, NEVER_TIME_RANGE } from '~/set_status_modal/constants';
import { timeRanges } from '~/vue_shared/constants';
const [thirtyMinutes] = timeRanges;
2021-03-11 19:13:27 +05:30
describe('Set status modal utils', () => {
describe('isUserBusy', () => {
it.each`
value | result
${''} | ${false}
${'fake status'} | ${false}
${AVAILABILITY_STATUS.NOT_SET} | ${false}
${AVAILABILITY_STATUS.BUSY} | ${true}
`('with $value returns $result', ({ value, result }) => {
expect(isUserBusy(value)).toBe(result);
});
});
2023-03-17 16:20:25 +05:30
describe('computedClearStatusAfterValue', () => {
it.each`
value | expected
${null} | ${null}
${NEVER_TIME_RANGE} | ${null}
${thirtyMinutes} | ${thirtyMinutes.shortcut}
`('with $value returns $expected', ({ value, expected }) => {
expect(computedClearStatusAfterValue(value)).toBe(expected);
});
});
2021-03-11 19:13:27 +05:30
});