From 065d8771adfae6aa75cdd367741468c823fbae4a Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Fri, 21 Apr 2023 14:32:37 +0100 Subject: fix(test): allow explicit undefined for boolean test options (#18786) Fixes #18784. --- cli/tests/unit/testing_test.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cli/tests/unit/testing_test.ts') diff --git a/cli/tests/unit/testing_test.ts b/cli/tests/unit/testing_test.ts index 4e28d545c..52e3baa13 100644 --- a/cli/tests/unit/testing_test.ts +++ b/cli/tests/unit/testing_test.ts @@ -147,3 +147,8 @@ Deno.test(async function parentOnTextContext(t1) { }); }); }); + +Deno.test("explicit undefined for boolean options", { + ignore: undefined, + only: undefined, +}, () => {}); -- cgit v1.2.3