mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			676 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			676 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {createElementFromAttrs, createElementFromHTML} from './dom.ts';
 | 
						|
 | 
						|
test('createElementFromHTML', () => {
 | 
						|
  expect(createElementFromHTML('<a>foo<span>bar</span></a>').outerHTML).toEqual('<a>foo<span>bar</span></a>');
 | 
						|
});
 | 
						|
 | 
						|
test('createElementFromAttrs', () => {
 | 
						|
  const el = createElementFromAttrs('button', {
 | 
						|
    id: 'the-id',
 | 
						|
    class: 'cls-1 cls-2',
 | 
						|
    disabled: true,
 | 
						|
    checked: false,
 | 
						|
    required: null,
 | 
						|
    tabindex: 0,
 | 
						|
    'data-foo': 'the-data',
 | 
						|
  }, 'txt', createElementFromHTML('<span>inner</span>'));
 | 
						|
  expect(el.outerHTML).toEqual('<button id="the-id" class="cls-1 cls-2" disabled="" tabindex="0" data-foo="the-data">txt<span>inner</span></button>');
 | 
						|
});
 |