We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8e728f commit d9fd92aCopy full SHA for d9fd92a
test/fixtures.test.ts
@@ -43,9 +43,9 @@ describe('fixtures', () => {
43
const rendered = [
44
md.render(content),
45
`<style>${CSS}</style>`,
46
- ].join('\n')
+ ].join('\n').trim().replace(/\r\n/g, '\n')
47
48
- expect(rendered.trim())
+ expect(rendered)
49
.toMatchFileSnapshot(path.replace('input', 'output').replace('.md', '.html'))
50
})
51
0 commit comments