diff options
Diffstat (limited to 'cli/tests/unit/testing_test.ts')
-rw-r--r-- | cli/tests/unit/testing_test.ts | 5 |
1 files changed, 5 insertions, 0 deletions
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, +}, () => {}); |