date-fns
Version:
Modern JavaScript date utility library
21 lines (15 loc) • 718 B
JavaScript
;
var _nodeAssert = require("./node:assert");
var _index = require("../../addBusinessDays.cjs"); // This is basic DST test for addBusinessDays
if (process.env.TZ !== "America/Santiago")
throw new Error("The test must be run with TZ=America/Santiago");
if (parseInt(process.version.match(/^v(\d+)\./)?.[1] || "0") < 10)
throw new Error("The test must be run on Node.js version >= 10");
console.log(
(0, _index.addBusinessDays)(new Date(2014, 8 /* Sep */, 1), 10).toString(),
);
_nodeAssert.default.deepStrictEqual(
// new Date(2014, 8, 7) is the DST day
(0, _index.addBusinessDays)(new Date(2014, 8 /* Sep */, 1), 10).toString(),
"Mon Sep 15 2014 00:00:00 GMT-0300 (Chile Summer Time)",
);