test: fix ci problem

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

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

Loading…
Cancel
Save