Merge pull request #945 from Seasonley/master

[FIX] JSONToDate test about timezone
This commit is contained in:
Angelos Chalaris
2019-03-23 14:08:25 +02:00
committed by GitHub

View File

@ -5,5 +5,6 @@ test('JSONToDate is a Function', () => {
expect(JSONToDate).toBeInstanceOf(Function); expect(JSONToDate).toBeInstanceOf(Function);
}); });
test('JSONToDate returns the correct date string', () => { test('JSONToDate returns the correct date string', () => {
expect(JSONToDate(/Date(1489525200000)/)).toBe('14/3/2017'); var reg = new RegExp(`Date(${Date.parse('March 14,2017')})`);
expect(JSONToDate(reg)).toBe('14/3/2017');
}); });