We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6256a1 commit 759b53eCopy full SHA for 759b53e
src/courseware/course/sidebar/sidebars/course-outline/CourseOutlineTray.test.jsx
@@ -103,7 +103,6 @@ describe('<CourseOutlineTray />', () => {
103
});
104
105
it('collapses sidebar correctly when screen is resized', async () => {
106
- const user = userEvent.setup();
107
const mockToggleSidebar = jest.fn();
108
await initTestStore();
109
renderWithProvider({ toggleSidebar: mockToggleSidebar });
@@ -116,8 +115,7 @@ describe('<CourseOutlineTray />', () => {
116
115
window.dispatchEvent(new Event('resize'));
117
118
expect(mockToggleSidebar).toHaveBeenCalledWith(null);
119
- }
120
- );
+ });
121
122
it('navigates to section or sequence level correctly on click by back/section button', async () => {
123
const user = userEvent.setup();
0 commit comments