javascript - How to test a date is latergreater than another in jest? - Stack Overflow

I understand that JavaScript allows for basic parison between dates e.g.,const dateOne = new Date();c

I understand that JavaScript allows for basic parison between dates e.g.,

const dateOne = new Date();
const dateTwo = new Date();

return dateTwo > dateOne;

I can see there is a .toBeGreaterThan() expectation in Jest, but this is only for numbers or big ints. Is there something available for dates to pare one is later than another?

I understand that JavaScript allows for basic parison between dates e.g.,

const dateOne = new Date();
const dateTwo = new Date();

return dateTwo > dateOne;

I can see there is a .toBeGreaterThan() expectation in Jest, but this is only for numbers or big ints. Is there something available for dates to pare one is later than another?

Share Improve this question asked Feb 8, 2022 at 17:31 milanmilan 3254 silver badges15 bronze badges 2
  • calling .getTime() on a Date object returns the number of milliseconds. – user5734311 Commented Feb 8, 2022 at 17:34
  • 3 You might do (+dateOne).toBeGreaterThan(+dateTwo) as + coerces Date to milliseconds. – Kosh Commented Feb 8, 2022 at 17:36
Add a ment  | 

1 Answer 1

Reset to default 13

Just use date.getTime(), that'll return the date in unix milliseconds.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743665728a4486939.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信