hardlounge/test/client/js/helpers/localetimeTest.js

20 lines
577 B
JavaScript
Raw Normal View History

"use strict";
const expect = require("chai").expect;
2019-11-21 04:11:06 -05:00
const localetime = require("../../../../client/js/helpers/localetime").default;
describe("localetime helper", () => {
it("should render a human-readable date", () => {
// 12PM in UTC time
const date = new Date("2014-05-22T12:00:00Z");
// 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 06:31:04 -04:00
expect(localetime(time)).to.equal("22 May 2014, 12:00:00");
});
});