test262/test/harness/assert-throws-native.js
Rick Waldron 1a2244faf8 Fix all test/harness/*.js tests (#1068)
$ test262-harness --hostType=d8 -t 4 --hostPath=`which d8` test/harness/*.js
Ran 147 tests
147 passed
0 failed

$ test262-harness --hostType=node -t 4 --hostPath=`which node` test/harness/*.js
Ran 147 tests
147 passed
0 failed

$ test262-harness --hostType=jsshell -t 4 --hostPath=`which js` test/harness/*.js
Ran 147 tests
147 passed
0 failed

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-06-22 22:25:35 -03:00

38 lines
771 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.
includes: [sta.js]
---*/
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();
});