diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-05-18 22:43:22 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-05-18 22:43:22 +0200 |
| commit | 30d3489ca15b3ec16b93c312b0f517cd1bead1cd (patch) | |
| tree | 7e85067757a38f5d756c83ab1d7ef5536703e9dd /__tests__/utils/test-utils.tsx | |
| parent | 584bd42f871d2e1618ca414749f09c38f0143a44 (diff) | |
chore: fix minor styles/typescript issues introduced during refactoring
Diffstat (limited to '__tests__/utils/test-utils.tsx')
| -rw-r--r-- | __tests__/utils/test-utils.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/__tests__/utils/test-utils.tsx b/__tests__/utils/test-utils.tsx index 00123c3..1bcea8e 100644 --- a/__tests__/utils/test-utils.tsx +++ b/__tests__/utils/test-utils.tsx @@ -1,9 +1,10 @@ import { render, RenderOptions } from '@testing-library/react'; import { ThemeProvider } from 'next-themes'; -import { FC, ReactElement } from 'react'; +import { FC, ReactElement, ReactNode } from 'react'; import { IntlProvider } from 'react-intl'; type ProvidersConfig = { + children: ReactNode; locale?: 'en' | 'fr'; }; |
