diff --git a/modules/@angular/common/test/pipes/slice_pipe_spec.ts b/modules/@angular/common/test/pipes/slice_pipe_spec.ts index 74f5789262..c9eb5c751c 100644 --- a/modules/@angular/common/test/pipes/slice_pipe_spec.ts +++ b/modules/@angular/common/test/pipes/slice_pipe_spec.ts @@ -70,19 +70,15 @@ export function main() { 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', () => { - expect(pipe.transform(list, -99)).toEqual([1, 2, 3, 4, 5]); - expect(pipe.transform(str, -99)).toEqual('tuvwxyz'); - }); + 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(str, -99)).toEqual('tuvwxyz'); + }); - it('should not modify the input list', () => { - expect(pipe.transform(list, 2)).toEqual([3, 4, 5]); - expect(list).toEqual([1, 2, 3, 4, 5]); - }); - } + it('should not modify the input list', () => { + expect(pipe.transform(list, 2)).toEqual([3, 4, 5]); + expect(list).toEqual([1, 2, 3, 4, 5]); + }); });