2022-06-19 00:25:21 +00:00
|
|
|
import {expect} from "chai";
|
|
|
|
import localetime from "../../../../client/js/helpers/localetime";
|
2016-10-19 03:30:46 +00:00
|
|
|
|
2019-11-05 10:36:44 +00:00
|
|
|
describe("localetime helper", () => {
|
2016-10-19 03:30:46 +00:00
|
|
|
it("should render a human-readable date", () => {
|
|
|
|
// 12PM in UTC time
|
2017-06-03 07:29:52 +00:00
|
|
|
const date = new Date("2014-05-22T12:00:00Z");
|
2016-10-19 03:30:46 +00:00
|
|
|
|
|
|
|
// Offset between UTC and local timezone
|
|
|
|
const offset = date.getTimezoneOffset() * 60 * 1000;
|
|
|
|
|
|
|
|
// Pretend local timezone is UTC by moving the clock of that offset
|
|
|
|
const time = date.getTime() + offset;
|
|
|
|
|
2017-04-29 10:31:04 +00:00
|
|
|
expect(localetime(time)).to.equal("22 May 2014, 12:00:00");
|
2016-10-19 03:30:46 +00:00
|
|
|
});
|
|
|
|
});
|