test(common): make date pipe tests work in more timezones (#21379)

Fixes #21112
PR Close #21379
This commit is contained in:
Olivier Combe 2018-01-08 10:10:50 +01:00 committed by Alex Eagle
parent 3e3c22f507
commit 246de65140
1 changed files with 2 additions and 2 deletions

View File

@ -263,10 +263,10 @@ import localeTh from '@angular/common/locales/th';
});
it('should format invalid in IE ISO date',
() => expect(pipe.transform('2017-01-11T09:25:14.014-0500')).toEqual('Jan 11, 2017'));
() => expect(pipe.transform('2017-01-11T12:00:00.014-0500')).toEqual('Jan 11, 2017'));
it('should format invalid in Safari ISO date',
() => expect(pipe.transform('2017-01-20T19:00:00+0000')).toEqual('Jan 20, 2017'));
() => expect(pipe.transform('2017-01-20T12:00:00+0000')).toEqual('Jan 20, 2017'));
// test for the following bugs:
// https://github.com/angular/angular/issues/9524