mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* Display hosts as table * adds Rocker button to ManageHostsPage * Defaults to grid selected
24 lines
676 B
JavaScript
24 lines
676 B
JavaScript
import React from 'react';
|
|
import expect from 'expect';
|
|
import { mount } from 'enzyme';
|
|
|
|
import PanelGroup from './PanelGroup';
|
|
|
|
describe('PanelGroup - component', () => {
|
|
const validPanelGroupItems = [
|
|
{ type: 'all', display_text: 'All Hosts', hosts_count: 20 },
|
|
{ type: 'platform', display_text: 'MAC OS', hosts_count: 10 },
|
|
{ type: 'status', display_text: 'ONLINE', hosts_count: 10 },
|
|
];
|
|
|
|
const component = mount(
|
|
<PanelGroup groupItems={validPanelGroupItems} />
|
|
);
|
|
|
|
it('renders a PanelGroupItem for each group item', () => {
|
|
const panelGroupItems = component.find('PanelGroupItem');
|
|
|
|
expect(panelGroupItems.length).toEqual(3);
|
|
});
|
|
});
|
|
|