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

/*---
esid: sec-error.prototype.name
description: >
  The initial value of Error.prototype.name is "Error".
---*/

assert.sameValue(Error.prototype.name, 'Error');


reportCompare(0, 0);