UNPKG

node-emoji

Version:

Friendly emoji lookups and parsing utilities for Node.js

22 lines (16 loc) 634 B
import { describe, expect, it } from '@jest/globals' import { findByCode } from './findByCode' describe('findByCode', () => { it('returns undefined when given a name', () => { expect(findByCode('heart')).toBeUndefined() }) it('returns undefined when given a :name:', () => { expect(findByCode(':heart:')).toBeUndefined() }) it('returns the emoji when given an emoji code', () => { expect(findByCode('❤')).toEqual({ emoji: '❤', key: 'heart' }) }) it('returns the base emoji when given an alternate emoji code', () => { expect(findByCode('❤️')).toEqual({ emoji: '❤', key: 'heart' }) }) })