Formats a number as a currency (ie $1,234.56).
{{ currency_expression | currency }}
angular.filter.currency(amount)
amount – {number} –
Input to filter.
{string}
– Formated number.
<input type="text" name="amount" value="1234.56"/> <br/> {{amount | currency}}
it('should init with 1234.56', function(){ expect(binding('amount | currency')).toBe('$1,234.56'); }); it('should update', function(){ input('amount').enter('-1234'); expect(binding('amount | currency')).toBe('$-1,234.00'); expect(element('.doc-example-live .ng-binding').attr('className')). toMatch(/ng-format-negative/); });