- Aug 06, 2015
-
-
André Bargull authored
-
André Bargull authored
-
André Bargull authored
-
André Bargull authored
-
André Bargull authored
-
André Bargull authored
-
André Bargull authored
-
André Bargull authored
-
- Aug 05, 2015
-
-
André Bargull authored
-
- Aug 03, 2015
-
-
unknown authored
-
- Jul 28, 2015
-
-
Leonardo Balter authored
-
Leonardo Balter authored
-
Leonardo Balter authored
-
Leonardo Balter authored
-
- Jul 24, 2015
-
-
Mike Pennisi authored
-
- Jul 17, 2015
-
-
André Bargull authored
- Remove duplicate word - Add missing license
-
André Bargull authored
-
- Jul 16, 2015
-
-
Leonardo Balter authored
-
Leonardo Balter authored
-
Leonardo Balter authored
-
Mike Pennisi authored
-
Mike Pennisi authored
Limit tests to behavior of method when invoked with an iterable.
-
- Jul 10, 2015
-
-
Mike Pennisi authored
The `negative` frontmatter tag expresses an expectation for the behavior of the test file as a whole. The `assert.throws` helper function offers more fine-grained control over expectations because it may be applied to specific statements and expressions. This makes it preferable in cases where it may be used (i.e. when the test body does not describe a syntax error or early error). Re-implement assertions for errors to use the `assert.throws` helper function wherever possible.
-
- Jul 06, 2015
-
-
Leonardo Balter authored
Including: - 21.2.4.2 get RegExp [ @@species ] - 21.2.5.3 get RegExp.prototype.flags - 21.2.5.4 get RegExp.prototype.global - 21.2.5.5 get RegExp.prototype.ignoreCase - 21.2.5.7 get RegExp.prototype.multiline - 21.2.5.10 get RegExp.prototype.source - 21.2.5.12 get RegExp.prototype.sticky - 21.2.5.15 get RegExp.prototype.unicode - 22.1.2.5 get Array [ @@species ] - 23.1.2.2 get Map [ @@species ] - 23.2.2.2 get Set [ @@species ] - 24.1.3.3 get ArrayBuffer [ @@species ] - 24.1.4.1 get ArrayBuffer.prototype.byteLength - 24.2.4.1 get DataView.prototype.buffer - 24.2.4.2 get DataView.prototype.byteLength - 24.2.4.3 get DataView.prototype.byteOffset - 25.4.4.6 get Promise [ @@species ] - B.2.2.1.1 get Object.prototype.__proto__ - B.2.2.1.2 set Object.prototype.__proto__ Skipped TypedArray tests in order to avoid an early test strategy definition for them.
-
- Jun 18, 2015
-
-
Mike Pennisi authored
Some tests specifically concern the application of the `use strict` directive as it appears in JavaScript source code. These tests should *not* be run with the `onlyStrict` flag because relying on the test runner to enable strict mode makes the semantics of the source code irrelevant. Update these tests to use the `noStrict` flag. Other tests concern language semantics that are only valid in strict mode, but the mechanism for enabling strictness is inconseqential. Update these tests to use the `onlyStrict` flag and remove any redundant `use strict` directive prologues contained within. Still other tests are valid both within and outside of strict mode. In keeping with the majority of other tests, do not specify any restrictions on the environments in which these tests may be run.
-
- Jun 14, 2015
-
-
Pieter van Ginkel authored
A number of Array.prototype.find tests were missing a feature specification.
-
- Jun 13, 2015
-
-
Pieter van Ginkel authored
One of the Array.prototype.fill tests specifies an es5id. Changed to an es6id.
-
- Jun 09, 2015
-
-
Mike Pennisi authored
This function is equivalent to `$ERROR` (which is automatically included in test environments). Remove the harness file that defines the function, remove references to the file from test `includes` lists, and update scripts to instead invoke the `$ERROR` function.
-
- May 26, 2015
-
-
André Bargull authored
- Add missing ".prototype" lookup in Array.prototype tests (Follow-up of #280) - Add noStrict flag in global/S10.2.3_A2.2_*.js (implicit this-binding is part of the test) - Provide correct this-binding in function/13.2-*.js - Add missing assert.throws in "set-iterator-close-after-add-failure.js"
-
Mike Pennisi authored
Assert the value of the properties and update the test frontmatter to include the `Symbol.iterator` feature.
-
Mike Pennisi authored
Define tests for intrinsic Iterators under the appropriate subdirectory of `built-ins`.
-
- May 24, 2015
-
-
Pieter van Ginkel authored
The test checks Array.concat which is undefined; instead it should check Array.prototype.concat.
-
- May 18, 2015
-
-
André Bargull authored
- Remove no longer needed noStrict flags. - Change tests to use propertyHelper.js for strict mode compatibility. - Add tests for return value of `delete` operator, e.g. `delete Array.prototype === false`. - Add non-writable tests for global NaN property. - Split some tests to run in strict mode. - Change tests with global `var length` declaration to use a different variable name for browser environments. - Merge duplicated tests symbol-data-property-configurable-non-strict and symbol-data-property-configurable-strict. - Merge duplicated tests symbol-data-property-writable-non-strict and symbol-data-property-writable-strict. - (And a small change in propertyHelper to reduce code duplication in function call.)
-
- May 15, 2015
-
-
Brian Terlson authored
-
Thomas Wood authored
Test for x.join(NaN) reports an error using the content of x.join("NaN"). This is confusing.
-
- May 11, 2015
-
-
Andrew Au authored
-
- May 08, 2015
-
-
André Bargull authored
Add missing noStrict flags and variable declarations. Part of issue #35.
-
- Apr 29, 2015
-
-
André Bargull authored
- Add missing "var" declarations and noStrict flags - Move code which requires non-strict semantics from Array.prototype.find_this-arg.js to Array.prototype.find_this-arg-receiver-primitive.js - Remove duplicate code from Array.prototype.findIndex_this-arg.js, already present in Array.prototype.findIndex_this-arg-receiver-primitive.js - Remove test code from Array.of_assignment-to-new-object-length.js, does not work in strict mode Part of issue #35
-
- Apr 27, 2015
-
-
André Bargull authored
- Duplicate properties are allowed in object literals: test/language/expressions/object/*.js - RegExpBuiltinExec was changed to use ToLength(lastIndex): test/built-ins/RegExp/prototype/exec/S15.10.6.2_A5_T3.js - Non-undefined flags arguments allowed in RegExp constructor call: test/built-ins/RegExp/*.js - Array.prototype.push throws TypeError if new length exceeds Number.MAX_SAFE_INTEGER: test/built-ins/Array/prototype/push/S15.4.4.7_A2_T2.js - .length property of bound functions is configurable: test/built-ins/Function/prototype/bind/15.3.4.5-15-2.js - Array.prototype changed back to exotic Array object: test/built-ins/Array/prototype/*.js, test/built-ins/Array/isArray/15.4.3.2-0-5.js
-
- Apr 20, 2015
-
-
Mike Pennisi authored
These tests are derived from the following files within the Google V8 project: test/mjsunit/es6/typed-array-iterator.js test/mjsunit/es6/arguments-iterator.js test/mjsunit/es6/string-iterator.js test/mjsunit/es6/collection-iterator.js
-