mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 08:34:58 +00:00
23 lines
870 B
JavaScript
23 lines
870 B
JavaScript
describe("correct behavior", () => {
|
|
test("length is 1", () => {
|
|
expect(Temporal.Instant.from).toHaveLength(1);
|
|
});
|
|
|
|
test("Instant instance argument", () => {
|
|
const instant = new Temporal.Instant(123n);
|
|
expect(Temporal.Instant.from(instant).epochNanoseconds).toBe(123n);
|
|
});
|
|
|
|
test("ZonedDateTime instance argument", () => {
|
|
const timeZone = new Temporal.TimeZone("UTC");
|
|
const zonedDateTime = new Temporal.ZonedDateTime(123n, timeZone);
|
|
expect(Temporal.Instant.from(zonedDateTime).epochNanoseconds).toBe(123n);
|
|
});
|
|
|
|
// Un-skip once ParseISODateTime & ParseTemporalTimeZoneString are implemented
|
|
test.skip("Instant string argument", () => {
|
|
expect(Temporal.Instant.from("1975-02-02T14:25:36.123456789Z").epochNanoseconds).toBe(
|
|
160583136123456789n
|
|
);
|
|
});
|
|
});
|