new logo
All checks were successful
Deploy / build-deploy (push) Successful in 5m32s

This commit is contained in:
Jorijn van der Graaf 2026-08-05 23:52:40 +02:00
commit b49042a626
8 changed files with 143 additions and 28 deletions

View file

@ -435,6 +435,12 @@ void RunMoneySelfTest() {
}
Check(ld && ld->IsObject() && ld->Str("@type") == "Product" && offersOk,
"schema: product JSON-LD parses, one offer per variant");
// Merchant-grade fields: shipping, returns, brand, sku — what
// Merchant Center's website-crawl feed reads at launch.
Check(pp.meta.jsonLd.find("OfferShippingDetails") != std::string::npos
&& pp.meta.jsonLd.find("MerchantReturnPolicy") != std::string::npos
&& pp.meta.jsonLd.find("\"sku\"") != std::string::npos,
"schema: offers carry shipping, returns and sku");
}
}
Check(!Content::Projects().empty(), "content: projects present");