import {currencyFormatFI} from "../utils/string.utils" describe('Example test of the jest setup running', () => { test('formatter should format correctly', () => { console.log(currencyFormatFI) const formatStub = currencyFormatFI.format(12.90) expect(formatStub).toBe("12,90 €") }); test('Should do another thing', () => { // do something... }); });