Revert "test(ivy): add testing for namespaced attributes (#23899)"

This reverts commit e994b11105.
This commit is contained in:
Victor Berchet 2018-06-06 13:38:12 -07:00
parent 8ac74da016
commit 31988a6ff9
1 changed files with 0 additions and 16 deletions

View File

@ -521,22 +521,6 @@ describe('instructions', () => {
'<div id="container" style="background: rgb(222, 173, 17);" title="abc" whatever="wee" shazbot="wocka wocka"></div>';
expect([standardHTML, ieHTML]).toContain(t.html);
const div = t.hostElement.querySelector('#container');
expect(div !.attributes.length).toBe(5);
const expectedAttributes: {[key: string]: string} = {
'id': 'container',
'http://www.example.com/2014/test:title': 'abc',
'style': 'background: #dead11',
'http://www.example.com/2014/test:whatever': 'wee',
'http://www.whatever.com/2016/blah:shazbot': 'wocka wocka',
};
Array.from(div !.attributes).forEach(attr => {
const key = attr.namespaceURI ? attr.namespaceURI + ':' + attr.name : attr.name;
expect(attr.value).toEqual(expectedAttributes[key]);
});
});
});
});