mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
0670db66c4
- Move from Mocha to Jest for JS testing (Jest seems to have better support for 'watching' tests and a more active community these days). - Codemod existing tests to Jest syntax (using https://github.com/skovhus/jest-codemods) - Fix some errors in tests that were previously hidden. - Update Babel.
17 lines
429 B
JavaScript
17 lines
429 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
|
|
import PlatformIcon from './PlatformIcon';
|
|
|
|
describe('PlatformIcon - component', () => {
|
|
it('renders', () => {
|
|
expect(mount(<PlatformIcon name="linux" />).length).toEqual(1);
|
|
});
|
|
|
|
it('renders text if no icon', () => {
|
|
const component = mount(<PlatformIcon name="All" />);
|
|
|
|
expect(component.find('.kolidecon-single-host').length).toEqual(1);
|
|
});
|
|
});
|