|
1 |
| -import {render, screen} from '@testing-library/react'; |
| 1 | +import {render, renderHook, screen} from '@testing-library/react'; |
2 | 2 | import {parseISO} from 'date-fns';
|
3 | 3 | // eslint-disable-next-line import/no-named-as-default -- False positive
|
4 | 4 | import IntlMessageFormat from 'intl-messageformat';
|
5 |
| -import React, {ComponentProps, ReactNode} from 'react'; |
| 5 | +import React, {ComponentProps, PropsWithChildren, ReactNode} from 'react'; |
6 | 6 | import {it, expect, vi, describe, beforeEach} from 'vitest';
|
7 | 7 | import {
|
8 | 8 | Formats,
|
@@ -557,6 +557,48 @@ describe('t.raw', () => {
|
557 | 557 | });
|
558 | 558 | });
|
559 | 559 |
|
| 560 | +describe('t.has', () => { |
| 561 | + function wrapper({children}: PropsWithChildren) { |
| 562 | + return ( |
| 563 | + <IntlProvider locale="en" messages={{foo: 'foo'}}> |
| 564 | + {children} |
| 565 | + </IntlProvider> |
| 566 | + ); |
| 567 | + } |
| 568 | + |
| 569 | + it('returns true for existing messages', () => { |
| 570 | + const {result: t} = renderHook(() => useTranslations(), {wrapper}); |
| 571 | + expect(t.current.has('foo')).toBe(true); |
| 572 | + }); |
| 573 | + |
| 574 | + it('returns true for an empty message', () => { |
| 575 | + const {result: t} = renderHook(() => useTranslations(), { |
| 576 | + wrapper({children}: PropsWithChildren) { |
| 577 | + return ( |
| 578 | + <IntlProvider locale="en" messages={{foo: ''}}> |
| 579 | + {children} |
| 580 | + </IntlProvider> |
| 581 | + ); |
| 582 | + } |
| 583 | + }); |
| 584 | + expect(t.current.has('foo')).toBe(true); |
| 585 | + }); |
| 586 | + |
| 587 | + it('returns false for missing messages', () => { |
| 588 | + const {result: t} = renderHook(() => useTranslations(), {wrapper}); |
| 589 | + expect(t.current.has('bar')).toBe(false); |
| 590 | + }); |
| 591 | + |
| 592 | + it('returns false when no messages are provided', () => { |
| 593 | + const {result: t} = renderHook(() => useTranslations(), { |
| 594 | + wrapper({children}: PropsWithChildren) { |
| 595 | + return <IntlProvider locale="en">{children}</IntlProvider>; |
| 596 | + } |
| 597 | + }); |
| 598 | + expect(t.current.has('foo')).toBe(false); |
| 599 | + }); |
| 600 | +}); |
| 601 | + |
560 | 602 | describe('error handling', () => {
|
561 | 603 | it('allows to configure a fallback', () => {
|
562 | 604 | const onError = vi.fn();
|
|
0 commit comments