You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 15, 2023. It is now read-only.
Recently upgraded from version 3.2.3 to 3.4.3 and the currency filter is not applying the thousands symbol anymore. I verified on the frontend works great but for some reason will not apply the thousands when ran from node.
failing test
test('renders renders with proper VueCurrencyFilter formatting', async t => {
const template = '<div>${{pay | currency({ fractionCount: 0 })}}</div>'
const vars = {
pay: '5000'
}
const html = await renderTemplate(template, vars)
t.is('<div>$5,000</div>', html)
})
Recently upgraded from version 3.2.3 to 3.4.3 and the currency filter is not applying the thousands symbol anymore. I verified on the frontend works great but for some reason will not apply the thousands when ran from node.
failing test
render method
The text was updated successfully, but these errors were encountered: