Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tests/smoke/render/render-templates.test.ts
12921 views
1
/*
2
* render-pdf.test.ts
3
*
4
* Copyright (C) 2020-2022 Posit Software, PBC
5
*
6
*/
7
8
import { docs } from "../../utils.ts";
9
10
import { testRender } from "./render.ts";
11
12
// Simple rendering tests
13
testRender(docs("templates/custom-template.qmd"), "pdf", true);
14
testRender(docs("templates/template-partial.qmd"), "pdf", true);
15
testRender(docs("templates/title-partial-html.qmd"), "html", false);
16
17
18