import { cleanUpSvgCode } from './utils' describe('cleanUpSvgCode', () => { it('replaces old-style
tags with the new style', () => { const result = cleanUpSvgCode('
test
') expect(result).toEqual('
test
') }) })