UNPKG

@elastic-suite/gally-admin-shared

Version:
13 lines (11 loc) 294 B
import { getDisplayName } from './hoc' describe('HOC service', () => { describe('getDisplayName', () => { it('Should return the component name', () => { function MyCmp(): JSX.Element { return null } expect(getDisplayName(MyCmp)).toEqual('MyCmp') }) }) })