Path: blob/main/tests/smoke/crossref/options.test.ts
12921 views
/*1* options.test.ts2*3* Copyright (C) 2020-2022 Posit Software, PBC4*5*/67import { ensureFileRegexMatches, ensureHtmlElements } from "../../verify.ts";8import { testRender } from "../render/render.ts";9import { crossref } from "./utils.ts";1011const optionsQmd = crossref("options.qmd", "html");12testRender(optionsQmd.input, "html", false, [13ensureHtmlElements(optionsQmd.output.outputPath, [], [14"section#introduction p a",15"section#introduction div#tbl-letters p a",16]),17ensureFileRegexMatches(optionsQmd.output.outputPath, [18/F\. 1/,19/T\. 1/,20/Figure 1— Elephant/,21/Table 1— My Caption/,22], [23/\?@fig-/,24/\?@tbl-/,25]),26]);2728const numberingQmd = crossref("numbering.qmd", "html");29testRender(numberingQmd.input, "html", false, [30ensureFileRegexMatches(numberingQmd.output.outputPath, [31/Figure x/,32/Table A/,33/Figure x: Elephant/,34/Table A: My Caption/,35/Figure y: Famous Elephants/,36/\(i\) Surus/,37/\(ii\) Abbas/,38], [39/\?@fig-/,40/\?@tbl-/,41]),42]);434445