From 31df2efb7f79c22f5fef89d2c9841747e441a269 Mon Sep 17 00:00:00 2001 From: elianli Date: Thu, 29 Sep 2022 23:07:32 +0800 Subject: [PATCH] feat: add test case to 00191-medium-append-argument (#16753) --- questions/00191-medium-append-argument/test-cases.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/questions/00191-medium-append-argument/test-cases.ts b/questions/00191-medium-append-argument/test-cases.ts index 229a0f11..8dcf57df 100644 --- a/questions/00191-medium-append-argument/test-cases.ts +++ b/questions/00191-medium-append-argument/test-cases.ts @@ -9,4 +9,6 @@ type Result2 = (x: undefined) => void type cases = [ Expect>, Expect>, + // @ts-expect-error + AppendArgument, ]