UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

22 lines (20 loc) 476 B
/* eslint-env jest */ import getImplicitRole from '../../../src/util/getImplicitRole'; describe('getImplicitRole', () => { describe('has implicit', () => { it('should return the implicit role', () => { expect(getImplicitRole( 'li', [], )).toBe('listitem'); }); }); describe('lacks implicit', () => { it('should return null', () => { expect(getImplicitRole( 'div', [], )).toBeNull(); }); }); });