v-darkora ceb66ed5b8
[Query Copilot V2] Restructure code for V2 of copilot (#1577)
* Initial folder and code restructure

* Add snapshots

* Remove flag for local testing

* Remove unnecessary code

* Fix snapshot

* Update tests
2023-08-16 10:10:21 +02:00

11 lines
259 B
TypeScript

import { shallow } from "enzyme";
import React from "react";
import { Footer } from "./Footer";
describe("Footer snapshot test", () => {
it("should render ", () => {
const wrapper = shallow(<Footer />);
expect(wrapper).toMatchSnapshot();
});
});