diff --git a/plugins/shortcuts/src/ShortcutItem.test.tsx b/plugins/shortcuts/src/ShortcutItem.test.tsx
index e080026f00..f002fb222e 100644
--- a/plugins/shortcuts/src/ShortcutItem.test.tsx
+++ b/plugins/shortcuts/src/ShortcutItem.test.tsx
@@ -77,27 +77,4 @@ describe('ShortcutItem', () => {
expect(screen.getByText('MT')).toBeInTheDocument();
});
});
-
- it('gets the color based on the theme', async () => {
- const { rerender } = await renderInTestApp(
- ,
- );
-
- expect(document.querySelector('circle')?.getAttribute('fill')).toEqual(
- pageTheme.tool.colors[0],
- );
-
- const newShortcut: Shortcut = {
- id: 'id',
- url: '/catalog',
- title: 'some title',
- };
- rerender(wrapInTestApp());
-
- await waitFor(() => {
- expect(document.querySelector('circle')?.getAttribute('fill')).toEqual(
- pageTheme.home.colors[0],
- );
- });
- });
});