|
27 | 27 | <div ng-controller="ExampleController">
|
28 | 28 | <input type="number" ng-model="amount"> <br>
|
29 | 29 | default currency symbol ($): <span id="currency-default">{{amount | currency}}</span><br>
|
30 |
| - custom currency identifier (USD$): <span>{{amount | currency:"USD$"}}</span> |
31 |
| - no fractions (0): <span>{{amount | currency:"USD$":0}}</span> |
| 30 | + custom currency identifier (USD$): <span id="currency-custom">{{amount | currency:"USD$"}}</span> |
| 31 | + no fractions (0): <span id="currency-no-fractions">{{amount | currency:"USD$":0}}</span> |
32 | 32 | </div>
|
33 | 33 | </file>
|
34 | 34 | <file name="protractor.js" type="protractor">
|
35 | 35 | it('should init with 1234.56', function() {
|
36 | 36 | expect(element(by.id('currency-default')).getText()).toBe('$1,234.56');
|
37 |
| - expect(element(by.binding('amount | currency:"USD$"')).getText()).toBe('USD$1,234.56'); |
38 |
| - expect(element(by.binding('amount | currency:"USD$":0')).getText()).toBe('USD$1,235'); |
| 37 | + expect(element(by.id('currency-custom')).getText()).toBe('USD$1,234.56'); |
| 38 | + expect(element(by.id('currency-no-fractions')).getText()).toBe('USD$1,235'); |
39 | 39 | });
|
40 | 40 | it('should update', function() {
|
41 | 41 | if (browser.params.browser == 'safari') {
|
|
46 | 46 | element(by.model('amount')).clear();
|
47 | 47 | element(by.model('amount')).sendKeys('-1234');
|
48 | 48 | expect(element(by.id('currency-default')).getText()).toBe('($1,234.00)');
|
49 |
| - expect(element(by.binding('amount | currency:"USD$"')).getText()).toBe('(USD$1,234.00)'); |
50 |
| - expect(element(by.binding('amount | currency:"USD$":0')).getText()).toBe('(USD$1,234)'); |
| 49 | + expect(element(by.id('currency-custom')).getText()).toBe('(USD$1,234.00)'); |
| 50 | + expect(element(by.id('currency-no-fractions')).getText()).toBe('(USD$1,234)'); |
51 | 51 | });
|
52 | 52 | </file>
|
53 | 53 | </example>
|
|
0 commit comments