javascript-time-ago
Version:
Localized relative date/time formatting
11 lines (10 loc) • 382 B
JavaScript
;
var _helpers = require("./helpers.js");
describe('steps/helpers', function () {
it('should convert value to Date', function () {
var today = new Date();
(0, _helpers.getDate)(today.getTime()).getTime().should.equal(today.getTime());
(0, _helpers.getDate)(today).getTime().should.equal(today.getTime());
});
});
//# sourceMappingURL=helpers.test.js.map