We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ba0a20 commit c440ea5Copy full SHA for c440ea5
src/global/money/money.spec.js
@@ -110,14 +110,14 @@ describe('ui.utils.masks.money', function() {
110
});
111
112
it('should add currency after value', function() {
113
- var currency = 'R$ ';
+ var currency = ' R$';
114
115
var input = element(by.model('currencyAfterValue'));
116
117
input.clear(); //Clear to send invalid content
118
input.sendKeys('1');
119
120
- expect(input.getAttribute('value')).toEqual('0,01 ' + currency);
+ expect(input.getAttribute('value')).toEqual('0,01' + currency);
121
122
123
0 commit comments