blob: 07bd505805d376d95bbe07c4f8a60d70d12af181 [file] [log] [blame]
// 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
description: >
The initial value of Error.prototype is the Error prototype object.
includes: [propertyHelper.js]
---*/
assert.sameValue(
Error.prototype.isPrototypeOf(new Error()), true,
'Error.prototype.isPrototypeOf(new Error()) returns true'
);
assert.sameValue(
Error.prototype.isPrototypeOf(Error()), true,
'Error.prototype.isPrototypeOf(Error()) returns true'
);
verifyNotEnumerable(Error, 'prototype');
verifyNotWritable(Error, 'prototype');
verifyNotConfigurable(Error, 'prototype');