test262/test/built-ins/System/global/property-descriptor.js
2016-04-12 14:37:10 -04:00

14 lines
419 B
JavaScript

// Copyright (C) 2016 Jordan Harband. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-system.global
description: System.global should be non-writable, non-enumerable, and configurable
author: Jordan Harband
includes: [propertyHelper.js]
---*/
verifyNotEnumerable(System, 'global');
verifyNotWritable(System, 'global');
verifyConfigurable(System, 'global');