Skip to content
Advertisement

Time comparison in Cypress

Issue occurs when I need to check for example that 11AM was 2hours before 1PM as my code takes difference as 10.(11 vs 1) as we have 12 hour time.

JavaScript

Advertisement

Answer

I notice you have the dayjs library. To handle parsing strings with various, add the customParseFormat plugin.

JavaScript

Your dateString is passed into dayjs(dateString, format) as 1st parameter and format as 2nd parameter.

The .hours() method takes no parameters, it just extracts the hours portion.

I’m not sure exactly what format you have, so here’s a few examples.
I’ve lined up the dateString and format so you can see the pattern.

JavaScript

The full list of formats is here


I can’t work out the layout of fixture file from your code.

In general, don’t try to write and read intermediate values, it doesn’t help you.

If you can control the format of the fixture file, you should separate fromDate and toDate with a comma which can be used to split the line

For example, cypress/fixtures/dates.txt

JavaScript

Test:

JavaScript

Note: toDate.diff(fromDate, "hour") will give a positive difference.

To compare with a negative difference, use the reverse

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement