Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tests/smoke/render/render-minimal.test.ts
12925 views
1
/*
2
* render-callout.test.ts
3
*
4
* Copyright (C) 2020-2022 Posit Software, PBC
5
*
6
*/
7
8
import { docs, outputForInput } from "../../utils.ts";
9
import { ensureHtmlElements } from "../../verify.ts";
10
import { testRender } from "./render.ts";
11
12
const input = docs("minimal.qmd");
13
const htmlOutput = outputForInput(input, "html");
14
15
testRender(input, "html", true, [
16
ensureHtmlElements(htmlOutput.outputPath, [], [
17
"script#quarto-html-after-body",
18
]),
19
]);
20
21