Skip to content

Commit 7d1c043

Browse files
committed
Merge pull request #81 from JCEmmons/master
Update test suite to work on ECMAScript 2015 implementations. Fixes #80
2 parents 6adc546 + e95fd1c commit 7d1c043

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/intl402/harness/testBuiltInObject.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ define([ 'intern!object', 'intern/chai!assert' ],
6363
var desc = Object.getOwnPropertyDescriptor(obj, "length");
6464
assert.isFalse(desc.writable, "The length property of a built-in function must not be writable.");
6565
assert.isFalse(desc.enumerable,"The length property of a built-in function must not be enumerable.");
66+
/* Since the length property changed from ECMA 5 to ECMA 6, we won't bother to test for it here.
6667
assert.isFalse(desc.configurable,"The length property of a built-in function must not be configurable.");
68+
*/
6769
}
6870

6971
properties.forEach(function(prop) {

0 commit comments

Comments
 (0)