I\'m running into an issue where Intl.NumberFormat is formatting the space character in some way that is different from what Jest is expecting. Tests against t
Intl.NumberFormat
NumberFormat use small non-breaking space (\u202f) for thousand separator and normal non-breaking space beforece currency (\xa0)
\u202f
\xa0
expect(new Intl.NumberFormat("fr-FR", { style: "currency", currency: "EUR", }).format(126126)).toBe("126\u202f126,00\xa0€")