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

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