blob: 8b6b6e1af38d128604b6e4f310c5bac8aa7bfc9f [file] [log] [blame]
// 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.plainyearmonth.prototype.with
description: TypeError thrown when options argument is a primitive
features: [BigInt, Symbol, Temporal]
---*/
const badOptions = [
null,
true,
"2021-01",
Symbol(),
1,
2n,
];
const instance = new Temporal.PlainYearMonth(2019, 10);
for (const value of badOptions) {
assert.throws(TypeError, () => instance.with({ year: 2020 }, value),
`TypeError on wrong options type ${typeof value}`);
};