diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2023-04-21 14:32:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-21 15:32:37 +0200 |
commit | 065d8771adfae6aa75cdd367741468c823fbae4a (patch) | |
tree | 19dfe56c9536d6ca563d1b189345231338a84801 /cli/tests/unit/testing_test.ts | |
parent | 1d447cb7c3295941be85a05b455f45d89e119667 (diff) |
fix(test): allow explicit undefined for boolean test options (#18786)
Fixes #18784.
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, +}, () => {}); |