UNPKG

pixiv.moe

Version:

A pinterest-style layout site, shows illusts on [pixiv.net](http://pixiv.net) order by popularity. Written with React.

11 lines (9 loc) 294 B
import { expect } from 'chai'; import EmojiParser from '@/utils/EmojiParser'; describe('EmojiParser', () => { it('should parse out with a <img />', () => { expect(EmojiParser.parse('すべてのコマがかわいい(love2)')).to.match( /(.*)<img(.*)src=(.*)" \/>/ ); }); });