fix: update test case

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei
2023-06-04 23:24:10 +08:00
parent 99b7a036b0
commit 771d6c5cd5

View File

@@ -58,6 +58,6 @@ describe('test Markdown Service', () => {
it('should render markdown to html', async () => {
const html = service.renderMarkdownContent('# title')
expect(html).toBe('<h1 id="title">title</h1>\n')
expect(html).toBe('<h1>title</h1>\n')
})
})