Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tests/smoke/self-contained/stdout.test.ts
6442 views
1
import { quarto } from "../../../src/quarto.ts";
2
import { test } from "../../test.ts";
3
4
test({
5
name: "https://github.com/quarto-dev/quarto-cli/issues/11068",
6
context: {
7
setup: async() => {
8
await quarto(["render", "docs/self-contained/simple.qmd", "-o", "-"]);
9
}
10
},
11
execute: async () => {},
12
verify: [],
13
type: "smoke"
14
});
15
16