您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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