summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Error/tostring-1.js
blob: 5b2279ca44a26f335be79c565700f39ebd3b9884 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2020 Rick Waldron.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-object.prototype.tostring
description: >
    Else if O has an [[ErrorData]] internal slot, let builtinTag be "Error".
---*/
assert.sameValue(new Error().toString(), 'Error', 'new Error.toString() returns "Error"');

Error.prototype.toString = Object.prototype.toString;
assert.sameValue(new Error().toString(), '[object Error]', 'new Error.toString() returns "[object Error]" (Object.prototype.toString)');


reportCompare(0, 0);