Files
feather/src/__tests__/index.test.js
2018-05-17 23:19:02 -07:00

9 lines
229 B
JavaScript

/* eslint-env jest */
import feather from '../index';
test('has correct properties', () => {
expect(feather).toHaveProperty('icons');
expect(feather).toHaveProperty('toSvg');
expect(feather).toHaveProperty('replace');
});