Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 8b568d7

Browse files
gkalpaktbosch
authored andcommitted
test(currencyFilter): fix disambiguous locator warning in e2e tests
The e2e tests for the `currencyFilter` issued the following warnings: > warning: more than one element found for locator by.binding("amount | currency:"USD$"") This commit removes the warnings by locating the elements by ID and not by binding. Closes #9593
1 parent 520db0c commit 8b568d7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/ng/filter/filters.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
<div ng-controller="ExampleController">
2828
<input type="number" ng-model="amount"> <br>
2929
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>
3232
</div>
3333
</file>
3434
<file name="protractor.js" type="protractor">
3535
it('should init with 1234.56', function() {
3636
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');
3939
});
4040
it('should update', function() {
4141
if (browser.params.browser == 'safari') {
@@ -46,8 +46,8 @@
4646
element(by.model('amount')).clear();
4747
element(by.model('amount')).sendKeys('-1234');
4848
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)');
5151
});
5252
</file>
5353
</example>

0 commit comments

Comments
 (0)