-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathI18nextProvider.spec.jsx
76 lines (66 loc) · 1.92 KB
/
I18nextProvider.spec.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import { describe, it, expect, vitest, afterEach } from 'vitest';
import React from 'react';
import { render, screen, cleanup } from '@testing-library/react';
import { I18nextProvider } from '../src/I18nextProvider';
import { useTranslation } from '../src/useTranslation';
import hasLoadedNamespace from './hasLoadedNamespaceMock.js';
vitest.unmock('../src/useTranslation');
vitest.unmock('../src/I18nextProvider');
const instance = {
language: 'en',
languages: ['en', 'fr'],
services: {
resourceStore: {
data: {},
},
backendConnector: { backend: {}, state: {} },
},
isInitialized: true,
changeLanguage: () => {},
getFixedT: () => (message) => message,
hasResourceBundle: (lng, ns) => ns === 'translation',
loadNamespaces: () => {},
hasLoadedNamespace: (ns) => hasLoadedNamespace(ns, instance),
on: () => {},
off: () => {},
options: {},
};
describe('I18nextProvider', () => {
afterEach(() => {
cleanup();
});
it('should render correct content', () => {
function TestComponent() {
const { t, i18n } = useTranslation('translation');
expect(typeof t).toBe('function');
expect(i18n).toBe(instance);
return <div>{t('key1')}</div>;
}
render(
<I18nextProvider i18n={instance}>
<TestComponent />
</I18nextProvider>,
);
expect(screen.getByText('key1')).toBeInTheDocument();
});
it('should not rerender if value is not changed', () => {
let count = 0;
const TestComponent = React.memo(function TestComponent() {
const { t } = useTranslation('translation');
count += 1;
return <div>{t('key1')}</div>;
});
const { rerender } = render(
<I18nextProvider i18n={instance}>
<TestComponent />
</I18nextProvider>,
);
expect(count).toBe(1);
rerender(
<I18nextProvider i18n={instance}>
<TestComponent />
</I18nextProvider>,
);
expect(count).toBe(1);
});
});