diff --git a/src/app/(main)/dashboard/components/Calendar/Calendar.test.tsx b/src/app/(main)/dashboard/components/Calendar/Calendar.test.tsx
new file mode 100644
index 00000000..f920887a
--- /dev/null
+++ b/src/app/(main)/dashboard/components/Calendar/Calendar.test.tsx
@@ -0,0 +1,27 @@
+import { render } from "@testing-library/react";
+import { Provider } from "react-redux";
+import { configureStore } from "@reduxjs/toolkit";
+import { format } from "date-fns";
+import Calendar from "./Calendar";
+import { rootReducer } from "@/store/store";
+
+describe("Calendar Component", () => {
+ // not the best test. maybe refactor to e2e test later
+ it("displays the month and year on a single line", () => {
+ const store = configureStore({
+ reducer: rootReducer,
+ });
+
+ const { getByText } = render(
+