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
</h1>
<h2> <h2>
Heading2 Heading2
</h2> </h2>
<h3> <h3>
Heading3 Heading3
</h3> </h3>
<h4> <h4>
Heading4 Heading4
</h4> </h4>
<h5> <h5>
Heading5 Heading5
</h5> </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>
href="https://tailchat.msgbyte.com/README.md"
>
./README.md <a
</a> href="https://tailchat.msgbyte.com/README.md"
>
./README.md
<img </a>
alt=""
src="https://tailchat.msgbyte.com/demo.jpg"
/> <img
</p> alt=""
src="https://tailchat.msgbyte.com/demo.jpg"
/>
</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>
href="./README.md"
>
./README.md <a
</a> href="./README.md"
>
./README.md
<img </a>
alt=""
src="./demo.jpg"
/> <img
</p> alt=""
src="./demo.jpg"
/>
</p>
</div>
</div> </div>
`; `;
exports[`Markdown list 1`] = ` exports[`Markdown list 1`] = `
<div> <div>
<ul> <div
class="tailchat-markdown"
>
<ul>
<li> <li>
1 1
</li> </li>
<li> <li>
2 2
</li> </li>
<li> <li>
3 3
<ul> <ul>
<li> <li>
4 4
</li> </li>
<li> <li>
5 5
<ul> <ul>
<li> <li>
6 6
</li> </li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li> </li>
</ul> </ul>
</div>
</div> </div>
`; `;

Loading…
Cancel
Save