summaryrefslogtreecommitdiff
path: root/test/built-ins/Promise/resolve/resolve-poisoned-then.js
Commit message (Collapse)AuthorAgeFilesLines
* built-ins/Promise/*: make all indentation consistent (depth & character) (#1433)Rick Waldron2018-02-151-8/+8
|
* Revert "js-beautify: make all indentation consistent (depth & character) ↵André Bargull2018-02-091-8/+8
| | | | | (#1409)" (#1412) This reverts commit a01de4a722d088055a7d84d8c691ddd7109edb34.
* js-beautify: make all indentation consistent (depth & character) (#1409)Rick Waldron2018-02-091-8/+8
|
* Frontmatter: fixup "info: >" to "info: |"Rick Waldron2018-01-051-1/+1
|
* Make asynchronous test configuration explicitMike Pennisi2016-02-121-0/+1
| | | | | | | | | | | | | | | | | | | | 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---*\//'
* Add tests for Promise Resolve FunctionsMike Pennisi2016-01-191-0/+36
Remove files that tested both PerformPromiseThen and PromiseResolveFunction in favor of new tests that test PromiseResolveFunction more directly and completely.