/**
 * TEAM: frontend_infra
 * @flow
 */

// TODO: Fix this eslint issue on next edit. This is an autogenerated comment.
// eslint-disable-next-line flexport/no-legacy-dependencies
import {mount} from "enzyme";
import Banner from "../Banner";

describe("Banner", () => {
  it("matches snapshot", () => {
    const banner = mount(<Banner message="I am a banner" />);
    expect(banner).toMatchSnapshot();
  });
});
