test: reactivate the remaining disabled tests in Edge (#11188)

Fixes #4756
This commit is contained in:
Marc Laval 2016-09-06 19:24:48 +02:00 committed by Martin Probst
parent a45769a0a2
commit c25d1f7ecc
1 changed files with 8 additions and 12 deletions

View File

@ -70,9 +70,6 @@ export function main() {
expect(pipe.transform(str, 99)).toEqual(''); expect(pipe.transform(str, 99)).toEqual('');
}); });
// Makes Edge to disconnect when running the full unit test campaign
// TODO: remove when issue is solved: https://github.com/angular/angular/issues/4756
if (!browserDetection.isEdge) {
it('should return entire input if START is negative and greater than input length', () => { it('should return entire input if START is negative and greater than input length', () => {
expect(pipe.transform(list, -99)).toEqual([1, 2, 3, 4, 5]); expect(pipe.transform(list, -99)).toEqual([1, 2, 3, 4, 5]);
expect(pipe.transform(str, -99)).toEqual('tuvwxyz'); expect(pipe.transform(str, -99)).toEqual('tuvwxyz');
@ -82,7 +79,6 @@ export function main() {
expect(pipe.transform(list, 2)).toEqual([3, 4, 5]); expect(pipe.transform(list, 2)).toEqual([3, 4, 5]);
expect(list).toEqual([1, 2, 3, 4, 5]); expect(list).toEqual([1, 2, 3, 4, 5]);
}); });
}
}); });