diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.test.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.test.jsx
index aadbd47dbc..9ba2d1bcde 100644
--- a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.test.jsx
+++ b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.test.jsx
@@ -160,7 +160,6 @@ describe('', () => {
});
test('should render deletion error modal', async () => {
- jest.setTimeout(5000 * 4);
InstanceGroupsAPI.destroy = jest.fn();
InstanceGroupsAPI.destroy.mockRejectedValue(
new Error({
diff --git a/awx/ui_next/src/screens/Job/JobOutput/JobOutput.test.jsx b/awx/ui_next/src/screens/Job/JobOutput/JobOutput.test.jsx
index 05bcb0de26..ced4261ff0 100644
--- a/awx/ui_next/src/screens/Job/JobOutput/JobOutput.test.jsx
+++ b/awx/ui_next/src/screens/Job/JobOutput/JobOutput.test.jsx
@@ -82,13 +82,6 @@ describe('', () => {
let wrapper;
const mockJob = mockJobData;
const mockJobEvents = mockJobEventsData;
- beforeAll(() => {
- jest.setTimeout(5000 * 4);
- });
-
- afterAll(() => {
- jest.setTimeout(5000);
- });
beforeEach(() => {
JobsAPI.readEvents.mockResolvedValue({
data: {
@@ -265,7 +258,6 @@ describe('', () => {
});
test('filter should trigger api call and display correct rows', async () => {
- jest.setTimeout(5000 * 4);
const searchBtn = 'button[aria-label="Search submit button"]';
const searchTextInput = 'input[aria-label="Search text input"]';
await act(async () => {
diff --git a/awx/ui_next/src/setupTests.js b/awx/ui_next/src/setupTests.js
index c1a2b381b5..cfbc42b673 100644
--- a/awx/ui_next/src/setupTests.js
+++ b/awx/ui_next/src/setupTests.js
@@ -6,7 +6,7 @@ require('@babel/polyfill');
configure({ adapter: new Adapter() });
-jest.setTimeout(5000 * 4);
+jest.setTimeout(120000);
// apply polyfills for jsdom
require('@nteract/mockument');