test: fix ci problem

pull/81/head
moonrailgun 3 years ago
parent e29c22f4dc
commit 31a387e441

@ -2,133 +2,149 @@
exports[`Markdown heading 1`] = `
<div>
<h1>
Heading1
</h1>
<div
class="tailchat-markdown"
>
<h1>
Heading1
</h1>
<h2>
Heading2
</h2>
<h2>
Heading2
</h2>
<h3>
Heading3
</h3>
<h3>
Heading3
</h3>
<h4>
Heading4
</h4>
<h4>
Heading4
</h4>
<h5>
Heading5
</h5>
<h5>
Heading5
</h5>
</div>
</div>
`;
exports[`Markdown link with baseUrl 1`] = `
<div>
<p>
<a
href="https://tailchat.msgbyte.com/"
>
https://tailchat.msgbyte.com/
</a>
<a
href="https://tailchat.msgbyte.com/README.md"
>
./README.md
</a>
<img
alt=""
src="https://tailchat.msgbyte.com/demo.jpg"
/>
</p>
<div
class="tailchat-markdown"
>
<p>
<a
href="https://tailchat.msgbyte.com/"
>
https://tailchat.msgbyte.com/
</a>
<a
href="https://tailchat.msgbyte.com/README.md"
>
./README.md
</a>
<img
alt=""
src="https://tailchat.msgbyte.com/demo.jpg"
/>
</p>
</div>
</div>
`;
exports[`Markdown link without baseUrl 1`] = `
<div>
<p>
<a
href="https://tailchat.msgbyte.com/"
>
https://tailchat.msgbyte.com/
</a>
<a
href="./README.md"
>
./README.md
</a>
<img
alt=""
src="./demo.jpg"
/>
</p>
<div
class="tailchat-markdown"
>
<p>
<a
href="https://tailchat.msgbyte.com/"
>
https://tailchat.msgbyte.com/
</a>
<a
href="./README.md"
>
./README.md
</a>
<img
alt=""
src="./demo.jpg"
/>
</p>
</div>
</div>
`;
exports[`Markdown list 1`] = `
<div>
<ul>
<div
class="tailchat-markdown"
>
<ul>
<li>
1
</li>
<li>
1
</li>
<li>
2
</li>
<li>
2
</li>
<li>
3
<li>
3
<ul>
<ul>
<li>
4
</li>
<li>
4
</li>
<li>
5
<li>
5
<ul>
<ul>
<li>
6
</li>
<li>
6
</li>
</ul>
</ul>
</li>
</li>
</ul>
</ul>
</li>
</li>
</ul>
</ul>
</div>
</div>
`;

Loading…
Cancel
Save