summaryrefslogtreecommitdiff
path: root/test/built-ins/Promise/exception-after-resolve-in-executor.js
Commit message (Collapse)AuthorAgeFilesLines
* Frontmatter: fixup "info: >" to "info: |"Rick Waldron2018-01-051-1/+1
|
* Remove execute bit from files (#976)André Bargull2017-04-131-0/+0
|
* 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---*\//'
* Improve test coverage for various Promise methodsAndré Bargull2015-12-021-0/+31