mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-04 12:53:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			244 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			244 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { cleanUpSvgCode } from './utils'
 | 
						|
 | 
						|
describe('cleanUpSvgCode', () => {
 | 
						|
  it('replaces old-style <br> tags with the new style', () => {
 | 
						|
    const result = cleanUpSvgCode('<br>test<br>')
 | 
						|
    expect(result).toEqual('<br/>test<br/>')
 | 
						|
  })
 | 
						|
})
 |