Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tests/smoke/site/render-shortcode-navbar.test.ts
6434 views
1
/*
2
* render-shortcode-navbar.test.ts
3
*
4
* Copyright (C) 2020-2022 Posit Software, PBC
5
*
6
*/
7
import { docs, projectOutputForInput } from "../../utils.ts";
8
import { ensureFileRegexMatches } from "../../verify.ts";
9
import { testSite } from "./site.ts";
10
11
testSite(
12
docs("websites/issue-3686/index.qmd"),
13
docs("websites/issue-3686/index.qmd"),
14
[],
15
[],
16
ensureFileRegexMatches(
17
projectOutputForInput(docs("websites/issue-3686/index.qmd"))
18
.outputPath,
19
[],
20
[/\{\{\&lt\;/, /\&gt\;\}\}/],
21
),
22
);
23
24