mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 20:01:59 +00:00
10 lines
236 B
TypeScript
10 lines
236 B
TypeScript
import { formatCurrency } from '@helper/helper';
|
|
|
|
describe('Helpers function test', () => {
|
|
test('Format number to currency format', () => {
|
|
const result = formatCurrency(5000);
|
|
|
|
expect(result).toEqual('$5,000.00');
|
|
});
|
|
});
|