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