Skip to content

Commit ca47a46

Browse files
committed
regression test, support for verify in websites
1 parent b973e9f commit ca47a46

File tree

6 files changed

+51
-0
lines changed

6 files changed

+51
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.quarto/
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
project:
2+
type: website
3+
4+
website:
5+
title: "Reprex"
6+
navbar:
7+
logo: "https://quarto.org/quarto.png"
8+
right:
9+
- about.qmd
10+
- icon: github
11+
href: https://github.com/
12+
- icon: twitter
13+
href: https://twitter.com
14+
sidebar:
15+
logo: "https://quarto.org/quarto.png"
16+
format:
17+
html:
18+
theme: cosmo
19+
css: styles.css
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: "Home"
3+
comments: false
4+
about:
5+
id: about-pec
6+
template: solana
7+
_quarto:
8+
tests:
9+
html:
10+
ensureHtmlElements:
11+
- ["div.quarto-about-solana.column-body"]
12+
---
13+
14+
::: {#about-pec}
15+
16+
![a pic](https://quarto.org/quarto.png)
17+
18+
Some text here.
19+
20+
:::
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "Reprex"
3+
page-layout: full
4+
title-block-banner: true
5+
---
6+
7+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* css styles */

tests/smoke/smoke-all.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,4 +280,7 @@ function findProjectOutputDir(input: string) {
280280
if (type === "book") {
281281
return "_book";
282282
}
283+
if (type === "website") {
284+
return "_site";
285+
}
283286
}

0 commit comments

Comments
 (0)