blob: 66df1a958b917174759f6ede240c9e05558700ee [file] [log] [blame]
// 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.prototype.subtract
description: Objects of a subclass are never created as return values for subtract()
includes: [temporalHelpers.js]
features: [Temporal]
---*/
TemporalHelpers.checkSubclassingIgnored(
Temporal.PlainTime,
[12, 34, 56, 987, 654, 321],
"subtract",
[{ nanoseconds: 1 }],
(result) => TemporalHelpers.assertPlainTime(result, 12, 34, 56, 987, 654, 320),
);