mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-29 13:31:20 +00:00 
			
		
		
		
	Explicitly import them instead which is cleaner and enables better editor integration. Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			258 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			258 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import {expect, test} from 'vitest';
 | |
| import {svg} from './svg.js';
 | |
| 
 | |
| test('svg', () => {
 | |
|   expect(svg('octicon-repo')).toMatch(/^<svg/);
 | |
|   expect(svg('octicon-repo', 16)).toContain('width="16"');
 | |
|   expect(svg('octicon-repo', 32)).toContain('width="32"');
 | |
| });
 |