Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tests/integration/guess-chunk-options-format-document.test.ts
6433 views
1
/*
2
* guess-chunk-options-format-document.test.ts
3
*
4
* test that guess-chunk-options-format correctly controls YAML
5
* validation in knitr chunks
6
*
7
* Copyright (C) 2022 Posit Software, PBC
8
*
9
*/
10
11
import { testRender } from "../smoke/render/render.ts";
12
13
14
const computesKnitr = "docs/yaml/guess-chunk-options-format-knitr.qmd";
15
testRender(computesKnitr, "html", false, [
16
17
]);
18
19
20