UNPKG

json-schema-faker

Version:
11 lines (8 loc) 286 B
import { expect } from 'chai'; import ipv4Generator from '../../../src/generators/ipv4'; /* global describe, it */ describe('IPv4 Generator', () => { it('should always match the IPv4 regex', () => { expect(ipv4Generator()).to.match(/^(?:[0-9]{1,3}\.){3}[0-9]{1,3}$/); }); });