各位提交者们好!
也许您在 Jest 中验证字符串时遇到了问题。
例如,上面的测试验证函数接收一个值并返回一个舍入值。
it('It should properly format a unit value with rounding.', () => { expect(formatCurrency(1234.56, true, false)).toEqual({ measure: 'thousand', value: 'R$ 1.200,00', }); });
在此测试中,Jest 返回错误,突出显示预期值和接收值之间的差异,但它们是相同的?
- Expected - 1 + Received + 1 Object { "measure": "thousand", - "value": "R$ 1.200,00", + "value": "R$ 1.200,00",
解决办法是添加xa0。问题不在于您的字符串,而在于 Jest 如何比较字符串值?
更正后的代码如上所示。
it('It should properly format a unit value with rounding.', () => { expect(formatCurrency(1234.56, true, false)).toEqual({ measure: 'thousand', value: 'R$\xa01.200,00', // remove space and add \xa0 }); });
以上是在 Jest 中验证字符串的详细内容。更多信息请关注PHP中文网其他相关文章!