From 7d45aa02019fb0dca1d63f6609ddb99a6500171d Mon Sep 17 00:00:00 2001 From: Carey Gumaer Date: Mon, 17 Jun 2024 15:12:46 -0400 Subject: [PATCH] Rename test appropriately and increase the timeout --- frontends/mit-open/src/pages/DashboardPage/Dashboard.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontends/mit-open/src/pages/DashboardPage/Dashboard.test.tsx b/frontends/mit-open/src/pages/DashboardPage/Dashboard.test.tsx index a214231279..d93e184c76 100644 --- a/frontends/mit-open/src/pages/DashboardPage/Dashboard.test.tsx +++ b/frontends/mit-open/src/pages/DashboardPage/Dashboard.test.tsx @@ -252,7 +252,7 @@ describe("DashboardPage", () => { }) }) - test("Renders the expected carousels on the home page", async () => { + test("Renders the expected carousels on the dashboard", async () => { const { profile, topPicks, @@ -337,5 +337,5 @@ describe("DashboardPage", () => { ) expect(courseTitle).toBeInTheDocument() }) - }) + }, 10000) })