You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. })