Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tests/smoke/render/render-stdout.test.ts
12925 views
1
/*
2
* project-render.test.ts
3
*
4
* Copyright (C) 2020-2023 Posit Software, PBC
5
*
6
*/
7
import { testQuartoCmd } from "../../test.ts";
8
import { docs } from "../../utils.ts";
9
import { noErrorsOrWarnings } from "../../verify.ts";
10
11
const input = docs("minimal.qmd");
12
13
testQuartoCmd(
14
"render",
15
[input, "-o", "-"],
16
[noErrorsOrWarnings],
17
{},
18
);
19