diff --git a/src/courseInfo/CourseInfoPage.test.tsx b/src/courseInfo/CourseInfoPage.test.tsx index eef23593..42fa4e39 100644 --- a/src/courseInfo/CourseInfoPage.test.tsx +++ b/src/courseInfo/CourseInfoPage.test.tsx @@ -30,4 +30,9 @@ describe('CourseInfoPage', () => { renderComponent(); expect(screen.getByText('General Course Info Component')).toBeInTheDocument(); }); + + it('renders pending tasks section', () => { + renderComponent(); + expect(screen.getByText('Pending Tasks')).toBeInTheDocument(); + }); }); diff --git a/src/courseInfo/CourseInfoPage.tsx b/src/courseInfo/CourseInfoPage.tsx index 75284ab6..1213dd7c 100644 --- a/src/courseInfo/CourseInfoPage.tsx +++ b/src/courseInfo/CourseInfoPage.tsx @@ -1,10 +1,12 @@ import { Container } from '@openedx/paragon'; +import { PendingTasks } from '@src/components/PendingTasks'; import { GeneralCourseInfo } from '@src/courseInfo/components/generalCourseInfo'; const CourseInfoPage = () => { return ( + ); };