refactor(common): fix a merge error (#25053)
A `keyvalue-pipe` was inadvertently pulled in When merging #25028 (commit
6eca36756
). This pipe is NOT in the patch branch and the test fails.
This commit remove the faulty spec.
PR Close #25053
This commit is contained in:
@ -58,17 +58,6 @@ describe('pipe', () => {
|
||||
});
|
||||
});
|
||||
|
||||
describe('keyvalue', () => {
|
||||
it('should work properly', () => {
|
||||
browser.get(URL);
|
||||
waitForElement('keyvalue-pipe');
|
||||
expect(element.all(by.css('keyvalue-pipe div')).get(0).getText()).toEqual('1:bar');
|
||||
expect(element.all(by.css('keyvalue-pipe div')).get(1).getText()).toEqual('2:foo');
|
||||
expect(element.all(by.css('keyvalue-pipe div')).get(2).getText()).toEqual('1:bar');
|
||||
expect(element.all(by.css('keyvalue-pipe div')).get(3).getText()).toEqual('2:foo');
|
||||
});
|
||||
});
|
||||
|
||||
describe('number', () => {
|
||||
it('should work properly', () => {
|
||||
browser.get(URL);
|
||||
|
Reference in New Issue
Block a user