UNPKG
json-schema-faker
Version:
latest (0.5.9)
0.5.9
0.5.8
0.5.7
0.5.6
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.5.0-rcv.46
0.5.0-rcv.45
0.5.0-rcv.44
0.5.0-rcv.43
0.5.0-rcv.42
0.5.0-rcv.41
0.5.0-rcv.40
0.5.0-rcv.39
0.5.0-rcv.38
0.5.0-rcv.37
0.5.0-rcv.36
0.5.0-rcv.35
0.5.0-rcv.34
0.5.0-rcv.33
0.5.0-rcv.32
0.5.0-rcv.31
0.5.0-rcv.30
0.5.0-rcv.29
0.5.0-rcv.28
0.5.0-rcv.27
0.5.0-rcv.26
0.5.0-rcv.25
0.5.0-rcv.24
0.5.0-rc9
0.5.0-rc8
0.5.0-rc7
0.5.0-rc6
0.5.0-rc5
0.5.0-rc4
0.5.0-rc3
0.5.0-rc24.0
0.5.0-rc24
0.5.0-rc23
0.5.0-rc22
0.5.0-rc21
0.5.0-rc20
0.5.0-rc2
0.5.0-rc19
0.5.0-rc18
0.5.0-rc17
0.5.0-rc16
0.5.0-rc15
0.5.0-rc14
0.5.0-rc13
0.5.0-rc12
0.5.0-rc11
0.5.0-rc10
0.5.0-rc1
0.4.7
0.4.6
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.16
0.2.15
0.2.14
0.2.13
0.2.12
0.2.11
0.2.10
0.2.9
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.13
0.1.12
0.1.11
0.1.10
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
JSON-Schema + fake data generators
json-schema-faker.js.org
json-schema-faker/json-schema-faker
json-schema-faker
/
tests
/
unit
/
generators
/
ipv4.spec.js
11 lines
(8 loc)
•
286 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
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}$/
); }); });