Add a test for observable calls in Temporal.Duration constructor.

This commit is contained in:
Ms2ger 2022-03-08 10:33:29 +01:00 committed by Rick Waldron
parent 50dc96e59e
commit d45476b9fd
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.duration
description: Constructor should not call built-in functions.
includes: [temporalHelpers.js]
features: [Temporal]
---*/
Number.isFinite = () => { throw new Test262Error("should not call Number.isFinite") };
Math.sign = () => { throw new Test262Error("should not call Math.sign") };
const duration = new Temporal.Duration(1, 1);
TemporalHelpers.assertDuration(duration, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0);