We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d447cb commit 065d877Copy full SHA for 065d877
cli/ops/testing.rs
@@ -100,7 +100,9 @@ struct TestInfo<'s> {
100
#[serde(rename = "fn")]
101
function: serde_v8::Value<'s>,
102
name: String,
103
+ #[serde(default)]
104
ignore: bool,
105
106
only: bool,
107
location: TestLocation,
108
}
cli/tests/unit/testing_test.ts
@@ -147,3 +147,8 @@ Deno.test(async function parentOnTextContext(t1) {
147
});
148
149
150
+
151
+Deno.test("explicit undefined for boolean options", {
152
+ ignore: undefined,
153
+ only: undefined,
154
+}, () => {});
0 commit comments