blob: c6c3b634a30df0a34c367d7e7e4a78aa8bde7ef8 [file] [log] [blame]
// Copyright (c) 2017 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Including testTypedArray.js will expose:
testTypedArrayConversions()
includes: [testTypedArray.js]
features: [TypedArray]
---*/
var threw = false;
try {
testTypedArrayConversions({}, () => {});
} catch(err) {
threw = true;
if (err.constructor !== TypeError) {
throw new Error(
'Expected a TypeError, but a "' + err.constructor.name +
'" was thrown.'
);
}
}
if (threw === false) {
throw new Error('Expected a TypeError, but no error was thrown.');
}