store: Remove actions.js

This removes the `actions.js` file and its mocking from the LandingPage test as these actions are no longer used.
This commit is contained in:
regexowl 2023-12-12 11:02:03 +01:00 committed by Sanne Raymaekers
parent c4d2444d44
commit 79a0060697
2 changed files with 0 additions and 70 deletions

View file

@ -7,13 +7,6 @@ import { mockComposesEmpty } from '../../fixtures/composes';
import { server } from '../../mocks/server.js';
import { renderWithReduxRouter } from '../../testUtils';
jest.mock('../../../store/actions/actions', () => {
return {
fetchComposes: () => ({ type: 'foo' }),
fetchComposeStatus: () => ({ type: 'bar' }),
};
});
jest.mock('@redhat-cloud-services/frontend-components/useChrome', () => ({
useChrome: () => ({
isBeta: () => false,