From 9cac8b025d47cc092f6412d66a1ff3236d8e100b Mon Sep 17 00:00:00 2001 From: Diogo Biazus Date: Wed, 29 Nov 2023 10:30:23 -0500 Subject: [PATCH] match test description with new behaviour --- src/constructor.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constructor.test.ts b/src/constructor.test.ts index eab29bd2..3cbfbdba 100644 --- a/src/constructor.test.ts +++ b/src/constructor.test.ts @@ -67,7 +67,7 @@ describe('makeDomainFunction', () => { }) }) - it('fails gracefully if gets something other than undefined', async () => { + it('ignores the input and pass undefined', async () => { const handler = mdf()((args) => args) type _R = Expect>>