UNPKG

react-styleguidist

Version:
26 lines (21 loc) 494 B
import highlightCodeInMarkdown from '../highlightCodeInMarkdown'; it('should highlight code', () => { const text = ` The only \`true\` button. \`\`\` <p>Hello React</p> \`\`\` `; const actual = highlightCodeInMarkdown(text); expect(actual).toMatchSnapshot(); }); it('should highlight code with specified language', () => { const text = ` The only true button. \`\`\`html <p>Hello React</p> \`\`\` `; const actual = highlightCodeInMarkdown(text); expect(actual).toMatchSnapshot(); });