test(ngSanitize): disable a failing Edge test in all versions, including 18

It's been only disabled on Edge 16/17 so far which made it fail in Edge 18.

Closes #16786
This commit is contained in:
Michał Gołębiowski-Owczarek
2018-12-09 03:23:09 +01:00
committed by GitHub
parent 09f013ae92
commit e7e8dad3b3
+2 -2
View File
@@ -261,8 +261,8 @@ describe('HTML', function() {
});
});
if (!/Edge\/(16|17)/.test(window.navigator.userAgent)) {
// Skip test on Edge 16 due to browser bug.
if (!/Edge\/\d{2,}/.test(window.navigator.userAgent)) {
// Skip test on Edge due to a browser bug.
it('should throw on a form with an input named "nextSibling"', function() {
inject(function($sanitize) {