選択できるのは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. })