From a1927eed64def9ed193cb626d3804052df4d9632 Mon Sep 17 00:00:00 2001 From: Sergey Romanenko Date: Mon, 31 Jan 2022 22:35:50 +0300 Subject: [PATCH] Faker 3.0.0 --- test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test.js b/test.js index db2f49a..0dc7e01 100644 --- a/test.js +++ b/test.js @@ -100,3 +100,7 @@ test('faker house return type to be string', t => { test('faker sport return type to be string', t => { t.is(typeof faker().sport().unusual(), 'string'); }); + +test('faker blood return type to be string', t => { + t.is(typeof faker().blood().group(), 'string'); +});