Skip to content
Snippets Groups Projects
Unverified Commit ab980a9a authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

Migrate `PasswordReveal` test from enzyme to react-testing-library (#13213)

parent f03f3dfe
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ export default class CopyWidget extends Component {
return (
<Tooltip tooltip={t`Copied!`} isOpen={this.state.copied}>
<CopyToClipboard text={value} onCopy={this.onCopy}>
<div className={className} style={style}>
<div className={className} style={style} data-testid="copy-button">
<Icon name="copy" {...props} />
</div>
</CopyToClipboard>
......
import { click } from "__support__/enzyme";
import React from "react";
import { render, fireEvent, cleanup } from "@testing-library/react";
import PasswordReveal from "metabase/components/PasswordReveal";
import CopyButton from "metabase/components/CopyButton";
import { shallow } from "enzyme";
// This shouldn't be needed from version 9.0.0 of react-testing-library (TODO: remove after update)
afterEach(cleanup);
describe("password reveal", () => {
let wrapper;
beforeEach(() => {
wrapper = shallow(<PasswordReveal />);
});
it("should toggle the visibility state when hide / show are clicked", () => {
expect(wrapper.state().visible).toEqual(false);
click(wrapper.find("a"));
expect(wrapper.state().visible).toEqual(true);
const { getByText } = render(<PasswordReveal />);
fireEvent.click(getByText("Show"));
getByText("Hide");
});
it("should render a copy button", () => {
expect(wrapper.find(CopyButton).length).toEqual(1);
const { getByTestId } = render(<PasswordReveal />);
// implicit assertion => it will throw an error if element is not found
getByTestId("copy-button");
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment