mirror of https://github.com/tc39/test262.git
17 lines
560 B
JavaScript
17 lines
560 B
JavaScript
|
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
|
||
|
/*---
|
||
|
esid: sec-temporal.plaintime.from
|
||
|
description: Verify that undefined options are handled correctly.
|
||
|
features: [Temporal]
|
||
|
---*/
|
||
|
|
||
|
const fields = { hour: 12, minute: 60 };
|
||
|
|
||
|
const explicit = Temporal.PlainTime.from(fields, undefined);
|
||
|
assert.sameValue(explicit.minute, 59, "default overflow is constrain");
|
||
|
|
||
|
const implicit = Temporal.PlainTime.from(fields);
|
||
|
assert.sameValue(implicit.minute, 59, "default overflow is constrain");
|