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/ops/testing.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cli/ops') diff --git a/cli/ops/testing.rs b/cli/ops/testing.rs index e36d7e611..3f9ade7c9 100644 --- a/cli/ops/testing.rs +++ b/cli/ops/testing.rs @@ -100,7 +100,9 @@ struct TestInfo<'s> { #[serde(rename = "fn")] function: serde_v8::Value<'s>, name: String, + #[serde(default)] ignore: bool, + #[serde(default)] only: bool, location: TestLocation, } -- cgit v1.2.3