Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/object.getownpropertydescriptors/test/tests.js')
-rw-r--r--node_modules/object.getownpropertydescriptors/test/tests.js11
1 files changed, 3 insertions, 8 deletions
diff --git a/node_modules/object.getownpropertydescriptors/test/tests.js b/node_modules/object.getownpropertydescriptors/test/tests.js
index b9aa29edf..357f296c8 100644
--- a/node_modules/object.getownpropertydescriptors/test/tests.js
+++ b/node_modules/object.getownpropertydescriptors/test/tests.js
@@ -48,9 +48,7 @@ module.exports = function (getDescriptors, t) {
});
}
- /* eslint-disable no-extend-native */
delete Object.prototype[key];
- /* eslint-enable no-extend-native */
st.end();
});
@@ -74,9 +72,9 @@ module.exports = function (getDescriptors, t) {
st.end();
});
- var supportsSymbols = typeof Symbol === 'function' && typeof Symbol() === 'symbol';
+ var supportsSymbols = typeof Symbol === 'function' && typeof Symbol('foo') === 'symbol';
t.test('gets Symbol descriptors too', { skip: !supportsSymbols }, function (st) {
- var symbol = Symbol();
+ var symbol = Symbol('sym');
var symDescriptor = {
configurable: false,
enumerable: true,
@@ -115,10 +113,7 @@ module.exports = function (getDescriptors, t) {
return Object.getOwnPropertyDescriptor(target, key);
},
ownKeys: function () {
- return [
- 'foo',
- 'bar'
- ];
+ return ['foo', 'bar'];
}
});
st.deepEqual(getDescriptors(proxy), { foo: fooDescriptor }, 'object has no descriptors');