mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
f099b2ae22
* Creates new PackComposerPage at /packs/new * Creates PackForm component * Adds PackForm to PackComposerPage * Creates QueriesListItem * Creates QueriesList * Creates QueriesListWrapper * Get all queries when the Packs Composer Page loads * Form HOC handles updates to formData prop * Creates form to configure scheduled queries * QueriesListWrapper renders ConfigurePackQueryForm * search queries input filters queries list * Empty state text * create pack when user submits the new pack form * Adds Edit pack page to /packs/:pack_id/edit * API client - get scheduled queries for a pack * API client - create scheduled query * Redux config for scheduled queries * Remove scheduled queries from packs * Add labels to pack on create * Add disabled state to the select targets dropdown * Adds edit route and pushes to new route on edit click * Adds cancel button to edit pack form * Adds Checkbox that selects all scheduled queries in table
36 lines
913 B
JavaScript
36 lines
913 B
JavaScript
import expect from 'expect';
|
|
import { mount } from 'enzyme';
|
|
|
|
import { connectedComponent, reduxMockStore } from 'test/helpers';
|
|
import { packStub } from 'test/stubs';
|
|
import EditPackPage from './EditPackPage';
|
|
|
|
describe('EditPackPage - component', () => {
|
|
const store = {
|
|
entities: {
|
|
packs: {
|
|
data: {
|
|
[packStub.id]: packStub,
|
|
},
|
|
},
|
|
scheduled_queries: {},
|
|
},
|
|
};
|
|
const page = mount(connectedComponent(EditPackPage, {
|
|
props: { params: { id: String(packStub.id) }, route: {} },
|
|
mockStore: reduxMockStore(store),
|
|
}));
|
|
|
|
it('renders', () => {
|
|
expect(page.length).toEqual(1);
|
|
});
|
|
|
|
it('renders a EditPackFormWrapper component', () => {
|
|
expect(page.find('EditPackFormWrapper').length).toEqual(1);
|
|
});
|
|
|
|
it('renders a ScheduleQuerySidePanel component', () => {
|
|
expect(page.find('ScheduleQuerySidePanel').length).toEqual(1);
|
|
});
|
|
});
|