// #region Global Imports
import * as React from "react";
import { mount } from "enzyme";
// #endregion Global Imports

// #region Local Imports
import { {{fileName}} } from "@Components";
// #endregion Local Imports

describe("{{fileName}}", () => {
    it("should match snapshot", () => {
        const wrapper = mount(<{{fileName}} />);
        expect(wrapper).toMatchSnapshot();
    });
});
