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
23 lines
635 B
JavaScript
23 lines
635 B
JavaScript
import React from "react";
|
|
import { mount } from "enzyme";
|
|
|
|
import { EllipsisMenu } from "./EllipsisMenu";
|
|
|
|
describe("EllipsisMenu - component", () => {
|
|
it("Displays children on click", () => {
|
|
const component = mount(
|
|
<EllipsisMenu>
|
|
<span>EllipsisMenu Children</span>
|
|
</EllipsisMenu>
|
|
);
|
|
|
|
expect(component.state().showChildren).toEqual(false);
|
|
expect(component.text()).not.toContainEqual("EllipsisMenu Children");
|
|
|
|
component.find("button").simulate("click");
|
|
|
|
expect(component.state().showChildren).toEqual(true);
|
|
expect(component.text()).toContain("EllipsisMenu Children");
|
|
});
|
|
});
|