各位提交者們好!
也許您在 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中文網其他相關文章!