1/* 2* project-render.test.ts 3* 4* Copyright (C) 2020-2023 Posit Software, PBC 5* 6*/ 7import { testQuartoCmd } from "../../test.ts"; 8import { docs } from "../../utils.ts"; 9import { noErrorsOrWarnings } from "../../verify.ts"; 10 11const input = docs("minimal.qmd"); 12 13testQuartoCmd( 14 "render", 15 [input, "-o", "-"], 16 [noErrorsOrWarnings], 17 {}, 18); 19