mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
11 lines
248 B
JavaScript
11 lines
248 B
JavaScript
import React from 'react';
|
|
import expect from 'expect';
|
|
import { mount } from 'enzyme';
|
|
|
|
import Icon from './Icon';
|
|
|
|
describe('Icon - component', () => {
|
|
it('renders', () => {
|
|
expect(mount(<Icon name="success-check" />)).toExist();
|
|
});
|
|
});
|