UNPKG

json-schema-faker

Version:
11 lines (8 loc) 280 B
import { expect } from 'chai'; import booleanGenerator from '../../../src/generators/boolean'; /* global describe, it */ describe('Boolean Generator', () => { it('should always return a boolean type', () => { expect(typeof booleanGenerator()).to.eql('boolean'); }); });