- Nov 30, 2018
-
-
Rick Waldron authored
-
- Nov 08, 2018
-
-
Adrian Heine authored
-
- Mar 22, 2018
-
-
André Bargull authored
Fixes #1492
-
- Mar 19, 2018
-
-
Rick Waldron authored
Fixes gh-1490
-
- Feb 15, 2018
-
-
Rick Waldron authored
-
- Feb 09, 2018
-
-
André Bargull authored
This reverts commit a01de4a7.
-
Rick Waldron authored
-
- Feb 01, 2018
-
-
André Bargull authored
-
- Jan 31, 2018
-
- Jan 25, 2018
-
-
André Bargull authored
- Jan 05, 2018
-
-
Rick Waldron authored
Originally reported here: https://github.com/tc39/test262/pull/1328, OP passed on revising.
-
Rick Waldron authored
-
- Nov 03, 2017
-
-
Rick Waldron authored
fixup: swap actual and expected in test/built-ins/Promise/prototype/finally/species-symbol.js (#1333)
-
- Oct 28, 2017
-
-
Sathya Gunasekaran authored
-
- Sep 22, 2017
-
-
Leo Balter authored
-
- Jul 26, 2017
-
-
Jordan Harband authored
-
- Jun 28, 2017
-
-
Rick Waldron authored
Signed-off-by:
Rick Waldron <waldron.rick@gmail.com>
-
- May 10, 2017
-
-
Leo Balter authored
* Add tests for Promises rejection queue These basic tests assert the rejection is captured but a later queued job from a chain of then calls. * fixup! Add tests for Promises rejection queue
-
- Apr 18, 2017
-
-
Mike Pennisi authored
As the author of these files, I can verify that they were contributed in 2015 on behalf of the V8 project.
-
- Apr 13, 2017
-
-
André Bargull authored
-
- Mar 01, 2017
-
-
Rick Waldron authored
Signed-off-by:
Rick Waldron <waldron.rick@gmail.com>
-
- Nov 21, 2016
-
-
Kevin Gibbons authored
-
- Nov 15, 2016
-
-
Sathya authored
Promise constructor accepts only one executor function
-
- Oct 24, 2016
-
-
jugglinmike authored
* Add tests for prototype realm inference * Add tests for miscellaneous realm concerns * Add tests for realm of spec-created Errors In some cases, Error objects produced by the specification are observable from ECMAScript code. Among these cases, some are further differentiated in that they occur outside of any built-in function and may be triggered through syntactic production directly. The current realm record is commonly interpreted incorrectly under these circumstances. Add tests asserting that the expected realm record is used when constructing such Error objects. * Add tests for realm use in ArraySpeciesCreate * Add tests for function realm retrieval * Add tests for cross-realm behaviors of Symbols * Add tests for GetValue and PutValue * Add tests for realm of spec-created Arrays In some cases, Arrays produced by CreateArrayFromList are observable from ECMAScript code. Among these cases, two occur outside of any built-in function and may be triggered through syntactic production directly. The current realm record is commonly interpreted incorrectly under these circumstances. Add tests asserting that the expected realm record is used when constructing arrays. * Add test for spec-created object * fixup! Add tests for realm of spec-created Errors * fixup! Add tests for realm of spec-created Errors * fixup! Add tests for prototype realm inference * fixup! Add tests for miscellaneous realm concerns
-
- Jun 27, 2016
-
-
Mike Pennisi authored
The original implementation of the test for the absense of a [[PromiseState]] internal slot did not actually assert the documented semantics. Re-implement the test to rely on the IsPromise abstract operation (via `Promise.prototype.then`) to accurately ensure that the object does not have a [[PromiseState]] internal slot. In relying on the semantics of the `instanceof` operator, the original test for the [[Prototype]] internal slot was imprecise (the assertion could be satisfied if additional objects were incorrectly defined on the prototype chain). Re-write the test to assert the value of the [[Prototype]] internal slot directly.
-
Mike Pennisi authored
-
Mike Pennisi authored
-
Mike Pennisi authored
-
Mike Pennisi authored
-
Mike Pennisi authored
-
Mike Pennisi authored
Ensure that resolution is ignored for Promises that have already been rejected.
-
- Jun 25, 2016
-
-
Mike Pennisi authored
Assert expected return values in all cases.
-
- Apr 25, 2016
-
-
Mike Pennisi authored
This harness function is not necessary in the majority of cases in which it is used. Remove its usage to simplify tests and decrease the amount of domain-specific knowledge necessary to contribute to the test suite. Persist the harness function itself for use by future tests for ES2015 modules (such a helper is necessary for tests that are interpreted as module code).
-
- Feb 12, 2016
-
-
Mike Pennisi authored
For asynchronous tests, the contract between test file and test runner is implicit: runners are expected to inspect the source code for references to a global `$DONE` identifier. Promote a more explicit contract between test file and test runner by introducing a new frontmatter "tag", `async`. This brings asynchronous test configuration in-line with other configuration mechanisms and also provides a more natural means of test filtering. The modifications to test files was made programatically using the `grep` and `sed` utilities: $ grep "\$DONE" test/ -r --files-with-match --null | \ xargs -0 sed -i 's/^\(flags:\s*\)\[/\1[async, /g' $ grep "\$DONE" test/ -rl --null | \ xargs -0 grep -E '^flags:' --files-without-match --null | \ xargs -0 sed -i 's/^---\*\//flags: [async]\n---*\//'
-
- Feb 10, 2016
-
-
Mike Pennisi authored
Assert that the `constructor` property of the "this" value of `Promise.prototype.then` is accessed exactly once. This guards against implementations where repeated access is used instead of reference passing (possibly motivated by convenience). Repeated access of this kind was demonstrated by V8's implementation of the specification: https://bugs.chromium.org/p/v8/issues/detail?id=4539
-
Mike Pennisi authored
Add tests that assert behavior when a Promise is resolved with another Promise whose `then` method has been overridden. Because all objects with a `then` method are treated equivalently, the presence of a [[PromiseState]] internal slot should have no effect on program behavior. These tests guard against a faulty optimization originally implemented in V8: https://bugs.chromium.org/p/v8/issues/detail?id=3641
-
- Jan 20, 2016
-
-
Mike Pennisi authored
Remove files that tested both PerformPromiseThen and PromiseResolveFunction in favor of new tests that test PromiseResolveFunction more directly and completely.
-
- Jan 15, 2016
-
-
André Bargull authored
Note: Already uses the updated DataView function lengths from tc39/ecma262#266 (ES2016 Draft 2015-12-20)
-
André Bargull authored
-