Create dedicated store module

This commit is contained in:
Alejandro Celaya
2025-11-14 10:34:34 +01:00
parent 9c1052c10b
commit 11bbef3aca
5 changed files with 5 additions and 5 deletions

View File

@@ -3,8 +3,8 @@ import { render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import type { PropsWithChildren, ReactElement } from 'react';
import { Provider } from 'react-redux';
import { setUpStore } from '../../src/container/store';
import type { ShlinkState } from '../../src/container/types';
import { setUpStore } from '../../src/store';
export const renderWithEvents = (element: ReactElement, options?: RenderOptions) => ({
user: userEvent.setup(),