最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin0浏览0评论

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.

发布评论

评论列表(0)

  1. 暂无评论