import { render } from '../test-utils';
import Money from '.';
describe('Money', () => {
it('formats the string with amount, currency & default `en` locale', () => {
const { container } = render();
expect(container).toHaveTextContent('4.98 GBP');
});
it('formats the string with amount, currency & the passed in locale', () => {
const { container } = render(, {
locale: 'fr',
messages: undefined,
});
expect(container).toHaveTextContent('4,98 GBP');
});
});