15 lines
529 B
JavaScript
15 lines
529 B
JavaScript
import { AVAILABILITY_STATUS, isUserBusy } from '~/set_status_modal/utils';
|
|
|
|
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);
|
|
});
|
|
});
|
|
});
|