mirror of https://github.com/tc39/test262.git
Use verifyProperty and remove dup check (#2146)
This commit is contained in:
parent
cc83d1d3de
commit
d47749e84d
|
@ -6,9 +6,6 @@ description: Intl.DateTimeFormat.prototype.formatRange.length.
|
|||
includes: [propertyHelper.js]
|
||||
features: [Intl.DateTimeFormat-formatRange]
|
||||
---*/
|
||||
|
||||
assert.sameValue(Intl.DateTimeFormat.prototype.formatRange.length, 2);
|
||||
|
||||
verifyProperty(Intl.DateTimeFormat.prototype.formatRange, 'length', {
|
||||
value: 2,
|
||||
enumerable: false,
|
||||
|
|
|
@ -6,10 +6,9 @@ description: Intl.DateTimeFormat.prototype.formatRange.name value and descriptor
|
|||
includes: [propertyHelper.js]
|
||||
features: [Intl.DateTimeFormat-formatRange]
|
||||
---*/
|
||||
assert.sameValue(Intl.DateTimeFormat.prototype.formatRange.name, 'formatRange',
|
||||
'The value of `Intl.DateTimeFormat.prototype.formatRange.name` is `"formatRange"`'
|
||||
);
|
||||
|
||||
verifyNotEnumerable(Intl.DateTimeFormat.prototype.formatRange, 'name');
|
||||
verifyNotWritable(Intl.DateTimeFormat.prototype.formatRange, 'name');
|
||||
verifyConfigurable(Intl.DateTimeFormat.prototype.formatRange, 'name');
|
||||
verifyProperty(Intl.DateTimeFormat.prototype.formatRange, 'name', {
|
||||
value: 'formatRange',
|
||||
enumerable: false,
|
||||
writable: false,
|
||||
configurable: true,
|
||||
});
|
||||
|
|
|
@ -6,9 +6,6 @@ description: Intl.DateTimeFormat.prototype.formatRangeToParts.length.
|
|||
includes: [propertyHelper.js]
|
||||
features: [Intl.DateTimeFormat-formatRange]
|
||||
---*/
|
||||
|
||||
assert.sameValue(Intl.DateTimeFormat.prototype.formatRangeToParts.length, 2);
|
||||
|
||||
verifyProperty(Intl.DateTimeFormat.prototype.formatRangeToParts, 'length', {
|
||||
value: 2,
|
||||
enumerable: false,
|
||||
|
|
|
@ -6,10 +6,9 @@ description: Intl.DateTimeFormat.prototype.formatRangeToParts.name value and des
|
|||
includes: [propertyHelper.js]
|
||||
features: [Intl.DateTimeFormat-formatRange]
|
||||
---*/
|
||||
assert.sameValue(Intl.DateTimeFormat.prototype.formatRangeToParts.name, 'formatRangeToParts',
|
||||
'The value of `Intl.DateTimeFormat.prototype.formatRangeToParts.name` is `"formatRangeToParts"`'
|
||||
);
|
||||
|
||||
verifyNotEnumerable(Intl.DateTimeFormat.prototype.formatRangeToParts, 'name');
|
||||
verifyNotWritable(Intl.DateTimeFormat.prototype.formatRangeToParts, 'name');
|
||||
verifyConfigurable(Intl.DateTimeFormat.prototype.formatRangeToParts, 'name');
|
||||
verifyProperty(Intl.DateTimeFormat.prototype.formatRangeToParts, 'name', {
|
||||
value: 'formatRangeToParts',
|
||||
enumerable: false,
|
||||
writable: false,
|
||||
configurable: true,
|
||||
});
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
description: Intl.DateTimeFormat.prototype.formatToParts.length.
|
||||
includes: [propertyHelper.js]
|
||||
---*/
|
||||
|
||||
assert.sameValue(Intl.DateTimeFormat.prototype.formatToParts.length, 1);
|
||||
|
||||
verifyNotEnumerable(Intl.DateTimeFormat.prototype.formatToParts, "length");
|
||||
verifyNotWritable(Intl.DateTimeFormat.prototype.formatToParts, "length");
|
||||
verifyConfigurable(Intl.DateTimeFormat.prototype.formatToParts, "length");
|
||||
verifyProperty(Intl.DateTimeFormat.prototype.formatToParts, 'length', {
|
||||
value: 1,
|
||||
enumerable: false,
|
||||
writable: false,
|
||||
configurable: true,
|
||||
});
|
||||
|
|
|
@ -5,11 +5,9 @@
|
|||
description: Intl.DateTimeFormat.prototype.formatToParts.name value and descriptor.
|
||||
includes: [propertyHelper.js]
|
||||
---*/
|
||||
|
||||
assert.sameValue(Intl.DateTimeFormat.prototype.formatToParts.name, 'formatToParts',
|
||||
'The value of `Intl.DateTimeFormat.prototype.formatToParts.name` is `"formatToParts"`'
|
||||
);
|
||||
|
||||
verifyNotEnumerable(Intl.DateTimeFormat.prototype.formatToParts, 'name');
|
||||
verifyNotWritable(Intl.DateTimeFormat.prototype.formatToParts, 'name');
|
||||
verifyConfigurable(Intl.DateTimeFormat.prototype.formatToParts, 'name');
|
||||
verifyProperty(Intl.DateTimeFormat.prototype.formatToParts, 'name', {
|
||||
value: 'formatToParts',
|
||||
enumerable: false,
|
||||
writable: false,
|
||||
configurable: true,
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue