@ryusei/light
Version:
<div align="center"> <a href="https://light.ryuseijs.com"> <img alt="RyuseiLight" src="https://light.ryuseijs.com/images/svg/logo.svg" width="70"> </a>
29 lines (22 loc) • 475 B
JavaScript
import { CATEGORY_ENTITY } from '../../../constants/categories';
describe( 'html', () => {
test( 'can tokenize entities.', () => {
[
'<',
'>',
'&',
'"',
''',
'¢',
'£',
'¥',
'€',
'©',
'®',
'<',
'¢',
].forEach( entity => {
expect( entity ).toBeTokenized( 'html', [ [ CATEGORY_ENTITY, entity ] ] );
} );
} );
} );