Find the contract-verification gap in this generated test.
JavaScript
async function verifyCreated(response) {
const body = await response.json();
if (typeof body.id !== "string") {
throw new Error("missing order id");
}
return true;
}
async function verifyCreated(response) {
const body = await response.json();
if (typeof body.id !== "string") {
throw new Error("missing order id");
}
return true;
}