1/* 2* render-docx.test.ts 3* 4* Copyright (C) 2020-2022 Posit Software, PBC 5* 6*/ 7 8import { docs } from "../../utils.ts"; 9import { testRender, testSimpleIsolatedRender } from "./render.ts"; 10 11//testRender(docs("test.Rmd"), "html", false, []); 12testSimpleIsolatedRender(docs("test.Rmd"), "html", false); 13testRender(docs("test.qmd"), "docx", true, []); 14 15