Add unknown property with string[] value

This commit is contained in:
Michael B. Gale
2026-03-09 13:12:37 +00:00
parent 5311ed41ea
commit 149fd14ac7
+4 -1
View File
@@ -71,7 +71,10 @@ test.serial(
headers: {},
status: 200,
url: "",
data: [{ property_name: "not-used-by-us", value: { foo: "bar" } }],
data: [
{ property_name: "not-used-by-us", value: { foo: "bar" } },
{ property_name: "also-not-used-by-us", value: ["A", "B", "C"] },
],
});
const logger = getRunnerLogger(true);
const mockRepositoryNwo = parseRepositoryNwo("owner/repo");