aboutsummaryrefslogtreecommitdiff
path: root/src/utils/boolean.test.ts
blob: 07daa056bc46adc46ba579062839e237d2389376 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import _ from 'lodash';
import { describe, expect, it } from 'vitest';
import { booleanToHumanReadable, isNotThrowing } from './boolean';

describe('boolean utils', () => {
  describe('isNotThrowing', () => {
    it('should return if the call throws or false otherwise', () => {
      expect(isNotThrowing(_.noop)).to.eql(true);
      expect(
        isNotThrowing(() => {
          throw new Error('message');
        }),
      ).to.eql(false);
    });
  });

  describe('booleanToHumanReadable', () => {
    it('should return "Yes" if the value is true and "No" otherwise', () => {
      expect(booleanToHumanReadable(true)).to.eql('Yes');
      expect(booleanToHumanReadable(false)).to.eql('No');
    });
  });
});