index.test.js 226 Bytes
Newer Older
Cole Bemis's avatar
Cole Bemis committed
1 2 3 4 5 6 7 8
/* eslint-env jest */
import feather from '../..';

test('has correct properties', () => {
  expect(feather).toHaveProperty('icons');
  expect(feather).toHaveProperty('toSvg');
  expect(feather).toHaveProperty('replace');
});