UNPKG

@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
import { CATEGORY_ENTITY } from '../../../constants/categories'; describe( 'html', () => { test( 'can tokenize entities.', () => { [ '&lt;', '&gt;', '&amp;', '&quot;', '&apos;', '&cent;', '&pound;', '&yen;', '&euro;', '&copy;', '&reg;', '&#60;', '&#162;', ].forEach( entity => { expect( entity ).toBeTokenized( 'html', [ [ CATEGORY_ENTITY, entity ] ] ); } ); } ); } );