mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-03-13 05:15:30 +00:00
* Initial folder and code restructure * Add snapshots * Remove flag for local testing * Remove unnecessary code * Fix snapshot * Update tests
11 lines
259 B
TypeScript
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();
|
|
});
|
|
});
|