mirror of
https://github.com/tc39/test262.git
synced 2025-06-18 13:00:43 +02:00
This harness function is not necessary in the majority of cases in which it is used. Remove its usage to simplify tests and decrease the amount of domain-specific knowledge necessary to contribute to the test suite. Persist the harness function itself for use by future tests for ES2015 modules (such a helper is necessary for tests that are interpreted as module code).
23 lines
595 B
JavaScript
23 lines
595 B
JavaScript
// Copyright (c) 2012 Ecma International. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
es5id: 15.2.3.6-3-70
|
|
description: >
|
|
Object.defineProperty - value of 'enumerable' property in
|
|
'Attributes' is the global object (8.10.5 step 3.b)
|
|
---*/
|
|
|
|
var obj = {};
|
|
var accessed = false;
|
|
|
|
Object.defineProperty(obj, "property", { enumerable: this });
|
|
|
|
for (var prop in obj) {
|
|
if (prop === "property") {
|
|
accessed = true;
|
|
}
|
|
}
|
|
|
|
assert(accessed, 'accessed !== true');
|