Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

utils.spec.ts 244B

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