@@ -93,12 +93,12 @@ exports[`Criterion Container snapshot is ungraded and is grading 1`] = `
isGrading={true}
orderNum={1}
/>
-
+
`;
exports[`Criterion Container snapshot is ungraded and is not grading 1`] = `
-
-
+
@@ -140,5 +140,5 @@ exports[`Criterion Container snapshot is ungraded and is not grading 1`] = `
isGrading={false}
orderNum={1}
/>
-
+
`;
diff --git a/src/containers/CriterionContainer/index.test.jsx b/src/containers/CriterionContainer/index.test.jsx
index cb8bef1..de3842e 100644
--- a/src/containers/CriterionContainer/index.test.jsx
+++ b/src/containers/CriterionContainer/index.test.jsx
@@ -11,13 +11,6 @@ jest.mock('./RadioCriterion', () => 'RadioCriterion');
jest.mock('./CriterionFeedback', () => 'CriterionFeedback');
jest.mock('./ReviewCriterion', () => 'ReviewCriterion');
-jest.mock('@edx/paragon', () => ({
- Form: {
- Group: () => 'Form.Group',
- Label: () => 'Form.Label',
- },
-}));
-
jest.mock('data/redux/app/selectors', () => ({
rubric: {
criterionConfig: jest.fn((...args) => ({
diff --git a/src/containers/ListView/ListViewBreadcrumb.test.jsx b/src/containers/ListView/ListViewBreadcrumb.test.jsx
index bca3590..d848b6c 100644
--- a/src/containers/ListView/ListViewBreadcrumb.test.jsx
+++ b/src/containers/ListView/ListViewBreadcrumb.test.jsx
@@ -1,9 +1,7 @@
import React from 'react';
import { shallow } from 'enzyme';
-import {
- Hyperlink,
-} from '@edx/paragon';
+import { Hyperlink } from '@edx/paragon';
import * as constants from 'data/constants/app';
import urls from 'data/services/lms/urls';
@@ -14,15 +12,6 @@ import {
mapStateToProps,
} from './ListViewBreadcrumb';
-jest.mock('@edx/paragon', () => ({
- Hyperlink: () => 'Hyperlink',
- Icon: () => 'Icon',
-}));
-jest.mock('@edx/paragon/icons', () => ({
- ArrowBack: 'icons.ArrowBack',
- Launch: 'icons.Launch',
-}));
-
jest.mock('data/redux/app/selectors', () => ({
courseId: (...args) => ({ courseId: args }),
ora: {
diff --git a/src/containers/ListView/__snapshots__/ListViewBreadcrumb.test.jsx.snap b/src/containers/ListView/__snapshots__/ListViewBreadcrumb.test.jsx.snap
index fdd2b8f..687656a 100644
--- a/src/containers/ListView/__snapshots__/ListViewBreadcrumb.test.jsx.snap
+++ b/src/containers/ListView/__snapshots__/ListViewBreadcrumb.test.jsx.snap
@@ -8,7 +8,7 @@ exports[`ListViewBreadcrumb component component snapshot: empty (no list data) 1
>
diff --git a/src/containers/ListView/index.test.jsx b/src/containers/ListView/index.test.jsx
index 93540f1..b8b4d4a 100644
--- a/src/containers/ListView/index.test.jsx
+++ b/src/containers/ListView/index.test.jsx
@@ -19,20 +19,6 @@ import {
mapDispatchToProps,
} from '.';
-jest.mock('@edx/paragon', () => {
- const mockDataTable = () => 'DataTable';
- Object.defineProperty(mockDataTable, 'name', { value: 'DataTable' });
- mockDataTable.TableControlBar = 'DataTable.TableControlBar';
- mockDataTable.Table = 'DataTable.Table';
- mockDataTable.EmptyTable = 'DataTable.EmptyTable';
- mockDataTable.TableFooter = 'DataTable.TableFooter';
- return {
- DataTable: mockDataTable,
- TextFilter: 'TextFilter',
- MultiSelectDropdownFilter: 'MultiSelectDropdownFilter',
- Container: () => 'Container',
- };
-});
jest.mock('components/StatusBadge', () => 'StatusBadge');
jest.mock('containers/ReviewModal', () => 'ReviewModal');
jest.mock('./ListViewBreadcrumb', () => 'ListViewBreadcrumb');
diff --git a/src/containers/ResponseDisplay/SubmissionFiles.test.jsx b/src/containers/ResponseDisplay/SubmissionFiles.test.jsx
index 4e93ad2..c8378f7 100644
--- a/src/containers/ResponseDisplay/SubmissionFiles.test.jsx
+++ b/src/containers/ResponseDisplay/SubmissionFiles.test.jsx
@@ -4,33 +4,6 @@ import { shallow } from 'enzyme';
import { formatMessage } from 'testUtils';
import { SubmissionFiles } from './SubmissionFiles';
-jest.mock('@edx/paragon', () => {
- const Card = () => 'Card';
- const Collapsible = {};
- Collapsible.Advanced = 'Collapsible.Advanced';
- Collapsible.Trigger = 'Collapsible.Trigger';
- Collapsible.Visible = 'Collapsible.Visible';
- Collapsible.Body = 'Collapsible.Body';
-
- const Button = () => 'Button';
- const Icon = () => 'Icon';
- const DataTable = () => 'DataTable';
- DataTable.Table = 'DataTable.Table';
-
- return {
- Card,
- Collapsible,
- Button,
- Icon,
- DataTable,
- };
-});
-
-jest.mock('@edx/paragon/icons', () => ({
- ArrowDropDown: jest.fn().mockName('Icons.ArrowDropDown'),
- ArrowDropUp: jest.fn().mockName('Icons.ArrowDropUp'),
-}));
-
jest.mock('./components/FileNameCell', () => jest.fn().mockName('FileNameCell'));
jest.mock('./components/FileExtensionCell', () => jest.fn().mockName('FileExtensionCell'));
jest.mock('./components/FilePopoverCell', () => jest.fn().mockName('FilePopoverCell'));
diff --git a/src/containers/ResponseDisplay/__snapshots__/SubmissionFiles.test.jsx.snap b/src/containers/ResponseDisplay/__snapshots__/SubmissionFiles.test.jsx.snap
index 8dcc025..aff612c 100644
--- a/src/containers/ResponseDisplay/__snapshots__/SubmissionFiles.test.jsx.snap
+++ b/src/containers/ResponseDisplay/__snapshots__/SubmissionFiles.test.jsx.snap
@@ -31,14 +31,14 @@ exports[`SubmissionFiles component snapshot files exited for props 1`] = `
whenClosed={true}
>
diff --git a/src/containers/ResponseDisplay/index.test.jsx b/src/containers/ResponseDisplay/index.test.jsx
index e06723c..db069b7 100644
--- a/src/containers/ResponseDisplay/index.test.jsx
+++ b/src/containers/ResponseDisplay/index.test.jsx
@@ -9,14 +9,6 @@ import { selectors } from 'data/redux';
import { ResponseDisplay, mapStateToProps } from '.';
-jest.mock('@edx/paragon', () => {
- const Card = () => 'Card';
- Card.Body = 'Card.Body';
- return {
- Card,
- };
-});
-
jest.mock('data/redux', () => ({
selectors: {
grading: {
diff --git a/src/containers/ReviewActions/components/StartGradingButton.test.jsx b/src/containers/ReviewActions/components/StartGradingButton.test.jsx
index 41eaa1a..ce16f58 100644
--- a/src/containers/ReviewActions/components/StartGradingButton.test.jsx
+++ b/src/containers/ReviewActions/components/StartGradingButton.test.jsx
@@ -10,13 +10,6 @@ import {
mapDispatchToProps,
} from './StartGradingButton';
-jest.mock('@edx/paragon', () => ({
- Button: () => 'Button',
-}));
-jest.mock('@edx/paragon/icons', () => ({
- Cancel: 'Cancel',
- Highlight: 'Highlight',
-}));
jest.mock('data/redux/grading/selectors', () => ({
selected: {
gradeStatus: (state) => ({ gradeStatus: state }),
diff --git a/src/containers/ReviewActions/components/SubmissionNavigation.test.jsx b/src/containers/ReviewActions/components/SubmissionNavigation.test.jsx
index 6a23ad7..48a37cd 100644
--- a/src/containers/ReviewActions/components/SubmissionNavigation.test.jsx
+++ b/src/containers/ReviewActions/components/SubmissionNavigation.test.jsx
@@ -11,14 +11,6 @@ import {
mapDispatchToProps,
} from './SubmissionNavigation';
-jest.mock('@edx/paragon', () => ({
- Icon: () => 'Icon',
- IconButton: () => 'IconButton',
-}));
-jest.mock('@edx/paragon/icons', () => ({
- ChevronLeft: 'ChevronLeft',
- ChevronRight: 'ChevronRight',
-}));
jest.mock('data/redux/grading/selectors', () => ({
prev: {
doesExist: (state) => ({ prevDoesExist: state }),
diff --git a/src/containers/ReviewActions/components/__snapshots__/StartGradingButton.test.jsx.snap b/src/containers/ReviewActions/components/__snapshots__/StartGradingButton.test.jsx.snap
index 06c5367..1b5a5d6 100644
--- a/src/containers/ReviewActions/components/__snapshots__/StartGradingButton.test.jsx.snap
+++ b/src/containers/ReviewActions/components/__snapshots__/StartGradingButton.test.jsx.snap
@@ -3,7 +3,7 @@
exports[`StartGradingButton component component snapshotes snapshot: graded, confirmOverride (startGrading callback) 1`] = `