fix(core): update

This commit is contained in:
2018-11-23 18:29:38 +01:00
parent 6bca8557f9
commit d720b8b084
7 changed files with 52 additions and 40 deletions

View File

@ -8,8 +8,12 @@ tap.test('should create a valid JavaScript Date from European TimeStamp', async
});
tap.test('should create a date and time with European Format', async () => {
const extendedDate = smarttime.ExtendedDate.fromEuropeanDateAndTime('9.8.2018', '08:00:00', 'Europe/Berlin');
const extendedDate = smarttime.ExtendedDate.fromEuropeanDateAndTime(
'9.8.2018',
'08:00:00',
'Europe/Berlin'
);
console.log(extendedDate);
})
});
tap.start();