diff --git a/src/components/__tests__/__snapshots__/footer.test.js.snap b/src/components/__tests__/__snapshots__/footer.test.js.snap
new file mode 100644
index 0000000..7d62e9f
--- /dev/null
+++ b/src/components/__tests__/__snapshots__/footer.test.js.snap
@@ -0,0 +1,169 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`Footer component Matches the snapshot 1`] = `
+
+
+
+
+
+

+
+ GitHub Profile
+
+

+
+ README Generator
+
+
+
+
+
+
+
+
+
+
+ Join Community
+
+
+
+
+
+
+ Developed in India
+
+
+
+ 🇮🇳
+
+
+
+`;
diff --git a/src/components/__tests__/footer.test.js b/src/components/__tests__/footer.test.js
new file mode 100644
index 0000000..87b4ff6
--- /dev/null
+++ b/src/components/__tests__/footer.test.js
@@ -0,0 +1,11 @@
+import React from "react"
+import renderer from "react-test-renderer"
+
+import Footer from "../footer"
+
+describe("Footer component", () => {
+ test("Matches the snapshot", () => {
+ const footer = renderer.create().toJSON();
+ expect(footer).toMatchSnapshot();
+ });
+});