blob: 136330dc33a2ad6fe9fde7205a47a46e903eb83f [file] [log] [blame]
// Copyright (C) 2021 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.now.zoneddatetimeiso
description: Temporal.Now.zonedDateTimeISO.name is "zonedDateTimeISO".
includes: [propertyHelper.js]
features: [Temporal]
---*/
assert.sameValue(
Temporal.Now.zonedDateTimeISO.name,
'zonedDateTimeISO',
'The value of Temporal.Now.zonedDateTimeISO.name is expected to be "zonedDateTimeISO"'
);
verifyProperty(Temporal.Now.zonedDateTimeISO, 'name', {
enumerable: false,
writable: false,
configurable: true
});