date-fns
Version:
Modern JavaScript date utility library
17 lines (12 loc) • 554 B
JavaScript
// This is an edge case DST test for parseISO
import { parseISO } from "../../parseISO.js";
import assert from "./node:assert";
if (process.env.TZ !== "Pacific/Apia")
throw new Error("The test must be run with TZ=Pacific/Apia");
if (parseInt(process.version.match(/^v(\d+)\./)?.[1] || "0") < 10)
throw new Error("The test must be run on Node.js version >= 10");
assert.strictEqual(parseISO("2011-12-30").getDate(), 31);
assert.strictEqual(
parseISO("2011-12-30T03:30").toString(),
"Sat Dec 31 2011 03:30:00 GMT+1400 (Apia Daylight Time)",
);