blob: 587674dd12857d3252c68f993dc38a701c65c4a7 [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.plaintime.from
description: TypeError thrown when options argument is a primitive
features: [BigInt, Symbol, Temporal]
---*/
const badOptions = [
null,
true,
"some string",
Symbol(),
1,
2n,
];
for (const value of badOptions) {
assert.throws(TypeError, () => Temporal.PlainTime.from({ hour: 12, minute: 34 }, value),
`TypeError on wrong options type ${typeof value}`);
};