elk/tests/nuxt/__snapshots__/html-parse.test.ts.snap

145 lines
3.7 KiB
Plaintext
Raw Normal View History

2023-03-20 15:11:04 +00:00
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2023-01-29 13:20:37 +00:00
exports[`html-parse > code frame > html 1`] = `
"<p>Testing code block</p><p></p><p><pre><code class="language-ts">import { useMouse, usePreferredDark } from '@vueuse/core'
2023-01-29 13:20:37 +00:00
// tracks mouse position
const { x, y } = useMouse()
// is the user prefers dark theme
const isDark = usePreferredDark()</code></pre></p>"
`;
exports[`html-parse > code frame > text 1`] = `
"Testing code block
\`\`\`ts
import { useMouse, usePreferredDark } from '@vueuse/core'
// tracks mouse position
const { x, y } = useMouse()
// is the user prefers dark theme
const isDark = usePreferredDark()
\`\`\`"
`;
exports[`html-parse > code frame 2 > html 1`] = `
"<p>
<span class="h-card"
2023-01-29 13:20:37 +00:00
><a
href="https://webtoo.ls/@antfu"
class="u-url mention"
rel="nofollow noopener noreferrer"
target="_blank"
2023-01-29 13:20:37 +00:00
>@<span>antfu</span></a
></span
>
Testing<br />
<pre><code class="language-ts">const a = hello</code></pre>
2023-01-29 13:20:37 +00:00
</p>
"
`;
exports[`html-parse > code frame 2 > text 1`] = `
"@antfu Testing
\`\`\`ts
const a = hello
\`\`\`"
`;
exports[`html-parse > custom emoji > html 1`] = `
"Daniel Roe
<picture alt=":nuxt:" class="custom-emoji" data-emoji-id="nuxt"
2023-01-29 13:20:37 +00:00
><source
srcset="
2023-01-29 13:20:37 +00:00
https://media.webtoo.ls/custom_emojis/images/000/000/366/original/73330dfc9dda4078.png
"
media="(prefers-reduced-motion: reduce)" />
2023-01-29 13:20:37 +00:00
<img
src="https://media.webtoo.ls/custom_emojis/images/000/000/366/original/73330dfc9dda4078.png"
alt=":nuxt:"
2023-01-29 13:20:37 +00:00
/></picture>
"
`;
exports[`html-parse > custom emoji > text 1`] = `"Daniel Roe :nuxt:"`;
exports[`html-parse > emojis > html 1`] = `
"<img
src="/emojis/twemoji/1f1eb-1f1f7.svg"
alt="🇫🇷"
class="iconify-emoji iconify-emoji--twemoji"
2023-01-29 13:20:37 +00:00
/>
<img
src="/emojis/twemoji/1f468-200d-1f469-200d-1f466.svg"
alt="👨‍👩‍👦"
class="iconify-emoji iconify-emoji--twemoji"
2023-01-29 13:20:37 +00:00
/>
<img
src="/emojis/twemoji/1f469-200d-1f692.svg"
alt="👩‍🚒"
class="iconify-emoji iconify-emoji--twemoji"
2023-01-29 13:20:37 +00:00
/><img
src="/emojis/twemoji/1f9d1-1f3fd-200d-1f680.svg"
alt="🧑🏽‍🚀"
class="iconify-emoji iconify-emoji--twemoji"
2023-01-29 13:20:37 +00:00
/>
"
`;
exports[`html-parse > emojis > text 1`] = `"🇫🇷 👨‍👩‍👦 👩‍🚒🧑🏽‍🚀"`;
exports[`html-parse > empty > html 1`] = `""`;
exports[`html-parse > empty > text 1`] = `""`;
exports[`html-parse > html entities > html 1`] = `
"<p>Hello &lt;World /&gt;.</p>
"
`;
exports[`html-parse > html entities > text 1`] = `"Hello <World />."`;
exports[`html-parse > inline markdown > html 1`] = `"<p>text <code>code</code> <b>bold</b> <em>italic</em> <del>del</del></p><p></p><p><pre><code class="language-js">code block</code></pre></p>"`;
2023-01-29 13:20:37 +00:00
exports[`html-parse > inline markdown > text 1`] = `
"text \`code\` **bold** *italic* ~~del~~
\`\`\`js
code block
\`\`\`"
`;
exports[`html-parse > link + mention > html 1`] = `
"<p>
Happy
<img
src="/emojis/twemoji/1f917.svg"
alt="🤗"
class="iconify-emoji iconify-emoji--twemoji"
2023-01-29 13:20:37 +00:00
/>
were now using
<span class="h-card"
2023-01-29 13:20:37 +00:00
><a
href="https://webtoo.ls/@vitest"
class="u-url mention"
rel="nofollow noopener noreferrer"
target="_blank"
2023-01-29 13:20:37 +00:00
>@<span>vitest</span></a
></span
>
(migrated from chai+mocha)
<a
href="https://github.com/ayoayco/astro-reactive-library/pull/203"
rel="nofollow noopener noreferrer"
target="_blank"
><span class="invisible">https://</span
><span class="ellipsis">github.com/ayoayco/astro-react</span
><span class="invisible">ive-library/pull/203</span></a
2023-01-29 13:20:37 +00:00
>
</p>
"
`;
exports[`html-parse > link + mention > text 1`] = `"Happy 🤗 were now using @vitest (migrated from chai+mocha) https://github.com/ayoayco/astro-reactive-library/pull/203"`;