aboutsummaryrefslogtreecommitdiffstats
path: root/test/harness/sta-override-error.js
blob: 840470b13c5110a75be68057727c2f9ccac5395d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2017 Rick Waldron.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
    Including sta.js will expose two functions:

        Test262Error
        $ERROR

    Assert that global $ERROR is overridable
includes: [sta.js]
---*/
function BaloneyError() {}

// Override $ERROR
$ERROR = function() {
  throw new BaloneyError();
};

assert.throws(BaloneyError, function() {
  $ERROR();
});