Path: blob/main/tests/smoke/site/render-blog.test.ts
6434 views
/*1* render-blog.test.ts2*3* Copyright (C) 2020-2022 Posit Software, PBC4*5*/6import { docs } from "../../utils.ts";7import { testSite } from "./site.ts";89testSite(docs("blog/about.qmd"), docs("blog/about.qmd"), [10"div.quarto-about-jolla", // Correct type11"img.about-image", // Image is present12"div.about-links", // Links are present13"main.content", // Main content is still there14], []);15testSite(docs("blog/index.qmd"), docs("blog"), [16"div#listing-listing", // the listing is rendered there17"div.list.quarto-listing-default", // The correct type of listing18".quarto-listing-category-title", // Categories are present19], []);2021testSite(docs("blog-grid/index.qmd"), docs("blog-grid"), [22"div.list.grid.quarto-listing-cols-3 > div:nth-child(1) div.listing-item-img-placeholder.card-img-top", // Placeholder structure correct23"div.list.grid.quarto-listing-cols-3 > div:nth-child(2) p.card-img-top > img", // The grid image structure is correct24"div.list.grid.quarto-listing-cols-3 > div:nth-child(3) p.card-img-top > img", // The grid image structure is correct25], []);262728