diff --git a/packages/core-components/src/components/Progress/Progress.test.tsx b/packages/core-components/src/components/Progress/Progress.test.tsx
index aad9b2c83a..71e2e70f23 100644
--- a/packages/core-components/src/components/Progress/Progress.test.tsx
+++ b/packages/core-components/src/components/Progress/Progress.test.tsx
@@ -16,21 +16,12 @@
import React from 'react';
import { renderInTestApp } from '@backstage/test-utils';
-import { act } from '@testing-library/react';
import { Progress } from './Progress';
describe('', () => {
it('renders without exploding', async () => {
- jest.useFakeTimers();
const { queryByTestId } = await renderInTestApp();
- expect(queryByTestId('progress-placeholder')).toBeInTheDocument();
- expect(queryByTestId('progress')).not.toBeInTheDocument();
- act(() => {
- jest.advanceTimersByTime(250);
- });
- expect(queryByTestId('progress-placeholder')).not.toBeInTheDocument();
expect(queryByTestId('progress')).toBeInTheDocument();
- jest.useRealTimers();
});
});