mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
9 lines
229 B
JavaScript
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');
|
|
});
|