mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
efb35b537a
* 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
18 lines
636 B
JavaScript
18 lines
636 B
JavaScript
import React from "react";
|
|
import { mount } from "enzyme";
|
|
|
|
import ScheduledQueriesSection from "components/side_panels/PackDetailsSidePanel/ScheduledQueriesSection";
|
|
import { scheduledQueryStub } from "test/stubs";
|
|
|
|
describe("ScheduledQueriesSection - component", () => {
|
|
it("links the query name to the show query route", () => {
|
|
const scheduledQuery = { ...scheduledQueryStub, query_id: 55 };
|
|
const Component = mount(
|
|
<ScheduledQueriesSection scheduledQueries={[scheduledQuery]} />
|
|
);
|
|
const Link = Component.find("Link");
|
|
|
|
expect(Link.prop("to")).toEqual(`/queries/${scheduledQuery.query_id}`);
|
|
});
|
|
});
|