pengzhanbo 4464703b7b
test: add unit test (#262)
* test: add unit test

* chore: tweak

* chore: tweak
2024-10-12 02:09:15 +08:00

39 lines
877 B
TypeScript

import MarkdownIt from 'markdown-it'
import { describe, expect, it } from 'vitest'
import { codepenPlugin } from '../src/node/embed/code/codepen.js'
function createMarkdown() {
return MarkdownIt().use((md) => {
md.block.ruler.before('code', 'import_code', () => false)
md.renderer.rules.import_code = () => ''
}).use(codepenPlugin)
}
describe('codepenPlugin', () => {
it('should work', () => {
const md = createMarkdown()
const code = `\
@[codepen](user/slash)
@[codepen preview](user/slash)
@[codepen preview editable title="codepen" width="100%" height="400px" tab="css,result" theme="dark"](user/slash)
`
expect(md.render(code)).toMatchSnapshot()
})
it('should not work', () => {
const md = createMarkdown()
const code = `\
@[codepen]()
@[codepen]xxx
@[codepen preview](
`
expect(md.render(code)).toMatchSnapshot()
})
})