feat(date-converter): added excel date time format

This commit is contained in:
Corentin Thomasset 2023-10-31 09:35:29 +01:00
parent abb8335041
commit 95645d498a
No known key found for this signature in database
GPG key ID: DBD997E935996158
4 changed files with 63 additions and 0 deletions

View file

@ -29,5 +29,6 @@ test.describe('Date time converter - json to yaml', () => {
expect((await page.getByTestId('Timestamp').inputValue()).trim()).toEqual('1681333824000');
expect((await page.getByTestId('UTC format').inputValue()).trim()).toEqual('Wed, 12 Apr 2023 21:10:24 GMT');
expect((await page.getByTestId('Mongo ObjectID').inputValue()).trim()).toEqual('64371e400000000000000000');
expect((await page.getByTestId('Excel date/time').inputValue()).trim()).toEqual('45028.88222222222');
});
});