utils.spec.ts 244 B

12345678
  1. import { cleanUpSvgCode } from './utils'
  2. describe('cleanUpSvgCode', () => {
  3. it('replaces old-style <br> tags with the new style', () => {
  4. const result = cleanUpSvgCode('<br>test<br>')
  5. expect(result).toEqual('<br/>test<br/>')
  6. })
  7. })