/
dedaMazai
/
reactGoodPattern
Обзор
Документация
Войти
/
dedaMazai
/
reactGoodPattern
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/shared/lib/tests/renderWithTranslation/renderWithTranslation.tsx
12 строк
383 B
Andrei Chipizubov
First commit
23 май 2023, 16:55
23 май 2023, 16:55
7f90536
Код
Авторство
О чём код?
import { render } from '@testing-library/react'; import { ReactNode } from 'react'; import { I18nextProvider } from 'react-i18next'; import i18nForTests from '@/shared/config/i18/i18nForTests'; export function renderWithTranslation(component: ReactNode) { return render( <I18nextProvider i18n={i18nForTests}> {component} </I18nextProvider>, ); }