mirror of
https://github.com/tc39/test262.git
synced 2025-09-30 21:48:50 +02:00
Tests for the normative changes made to Temporal in https://github.com/tc39/proposal-temporal/pull/1829 In a previous version of the specification, there was a fallback to the intrinsic getOffsetNanosecondsFor when it was undefined.
19 lines
700 B
JavaScript
19 lines
700 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.now.plaindatetimeiso
|
|
description: TypeError thrown if timeZone.getOffsetNanosecondsFor is not callable
|
|
features: [BigInt, Symbol, Temporal, arrow-function]
|
|
---*/
|
|
|
|
[undefined, null, true, Math.PI, 'string', Symbol('sym'), 42n, {}].forEach(notCallable => {
|
|
const timeZone = new Temporal.TimeZone("UTC");
|
|
|
|
timeZone.getOffsetNanosecondsFor = notCallable;
|
|
assert.throws(
|
|
TypeError,
|
|
() => Temporal.Now.plainDateTimeISO(timeZone),
|
|
`Uncallable ${typeof notCallable} ${notCallable} getOffsetNanosecondsFor should throw TypeError`
|
|
);
|
|
});
|