UNPKG

react-web-animation

Version:

react-web-animation is a set of React components that expose the Web Animations API in a declarative way.

11 lines (9 loc) 292 B
import domElements from './dom_elements'; describe('domElements', () => { it('will export an array', () => { expect(domElements).toBeInstanceOf(Array); }); it('will export an array of strings', () => { domElements.forEach(s => expect(s).toEqual(expect.any(String))); }); });