fleet/frontend/components/side_panels/QuerySidePanel/QuerySidePanel.tests.jsx
Gabe Hernandez efb35b537a
add prettier and have it format all fleet application code (#625)
* add prettier and have it format all js code except website:
:

* trying running prettier check in CI

* fix runs on in CI

* change CI job name

* fix prettier erros and fix CI
2021-04-12 14:32:25 +01:00

30 lines
939 B
JavaScript

import React from "react";
import { mount } from "enzyme";
import { stubbedOsqueryTable } from "test/helpers";
import QuerySidePanel from "./QuerySidePanel";
describe("QuerySidePanel - component", () => {
const onOsqueryTableSelect = jest.fn();
const onTextEditorInputChange = jest.fn();
const props = {
onOsqueryTableSelect,
onTextEditorInputChange,
selectedOsqueryTable: stubbedOsqueryTable,
};
it("renders the selected table in the dropdown", () => {
const component = mount(<QuerySidePanel {...props} />);
const tableSelect = component.find("Dropdown");
expect(tableSelect.prop("value")).toEqual("users");
});
it("calls the onOsqueryTableSelect prop when a new table is selected in the dropdown", () => {
const component = mount(<QuerySidePanel {...props} />);
component.instance().onSelectTable("groups");
expect(onOsqueryTableSelect).toHaveBeenCalledWith("groups");
});
});