test262/test/harness/assert-throws-native.js
Adrian Heine 21f6a86a6d Remove explicit sta.js includes
INTERPRETING.md states that sta.js has to be included unconditionally.
2018-10-15 12:45:55 -04:00

37 lines
752 B
JavaScript

// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Functions that throw instances of the specified native Error constructor
satisfy the assertion.
---*/
assert.throws(Error, function() {
throw new Error();
});
assert.throws(EvalError, function() {
throw new EvalError();
});
assert.throws(RangeError, function() {
throw new RangeError();
});
assert.throws(ReferenceError, function() {
throw new ReferenceError();
});
assert.throws(SyntaxError, function() {
throw new SyntaxError();
});
assert.throws(TypeError, function() {
throw new TypeError();
});
assert.throws(URIError, function() {
throw new URIError();
});