mirror of https://github.com/tc39/test262.git
Add `es7id: pending` per https://github.com/tc39/test262/pull/95#issuecomment-157790248
This commit is contained in:
parent
e459048f22
commit
7a5385e2ab
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries should terminate if getting a value throws an exception
|
||||
es7id: pending
|
||||
includes: [Test262Error.js]
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries should fail if given a null or undefined value
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries should have length 1
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
includes: [propertyHelper.js]
|
||||
---*/
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries should have name property with value 'entries'
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
includes: [propertyHelper.js]
|
||||
---*/
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries should be writable, non-enumerable, and configurable
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
includes: [propertyHelper.js]
|
||||
---*/
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries sees a new element added by a getter that is hit during iteration
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries does not see an element made non-enumerable by a getter that is hit during iteration
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries does not see an element removed by a getter that is hit during iteration
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries does not see inherited properties.
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries accepts boolean primitives.
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries accepts number primitives.
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries accepts string primitives.
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries accepts Symbol primitives.
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
features: [Symbol]
|
||||
---*/
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.entries does not include Symbol keys.
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
features: [Symbol]
|
||||
---*/
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
/*---
|
||||
description: >
|
||||
Object.entries should not have its behavior impacted by modifications to the global property Object
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
/*---
|
||||
description: >
|
||||
Object.entries should not have its behavior impacted by modifications to Object.keys
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values should terminate if getting a value throws an exception
|
||||
es7id: pending
|
||||
includes: [Test262Error.js]
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values should fail if given a null or undefined value
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values should have length 1
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
includes: [propertyHelper.js]
|
||||
---*/
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values should have name property with value 'values'
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
includes: [propertyHelper.js]
|
||||
---*/
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values should be writable, non-enumerable, and configurable
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
includes: [propertyHelper.js]
|
||||
---*/
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values sees a new element added by a getter that is hit during iteration
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values does not see an element made non-enumerable by a getter that is hit during iteration
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values does not see an element removed by a getter that is hit during iteration
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values does not see inherited properties.
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values accepts boolean primitives.
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values accepts number primitives.
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values accepts string primitives.
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values accepts Symbol primitives.
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
features: [Symbol]
|
||||
---*/
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Object.values does not include Symbol keys.
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
features: [Symbol]
|
||||
---*/
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
/*---
|
||||
description: >
|
||||
Object.values should not have its behavior impacted by modifications to the global property Object
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
/*---
|
||||
description: >
|
||||
Object.values should not have its behavior impacted by modifications to Object.keys
|
||||
es7id: pending
|
||||
author: Jordan Harband
|
||||
---*/
|
||||
|
||||
|
|
Loading…
Reference in New Issue