1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix formatDuration test to be stable (#4944)

This commit is contained in:
Sebastian Malton 2022-03-01 11:05:32 -05:00 committed by GitHub
parent 5196ffa55d
commit ff14603be6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,7 +55,7 @@ describe("human format durations", () => {
}); });
test("durations less than 8 years returns years and days", () => { test("durations less than 8 years returns years and days", () => {
const timeValue = Date.now() - new Date(moment().subtract(2, "years").subtract(5, "days").subtract(2, "hours").toDate()).getTime(); const timeValue = new Date(2020, 0, 10, 12, 0, 0, 0).getTime() - new Date(2018, 0, 4, 12, 0, 0, 0).getTime();
const res = formatDuration(timeValue); const res = formatDuration(timeValue);