UNPKG

json-schema-faker

Version:
11 lines (8 loc) 254 B
import { expect } from 'chai'; import nullGenerator from '../../../src/generators/null'; /* global describe, it */ describe('Null Generator', () => { it('should always return `null` value', () => { expect(nullGenerator()).to.eql(null); }); });