-
- Downloads
AsyncFunction: Add tests ensuring the new 1-tick await behaviour (#1843)
* AsyncFunction: Add tests ensuring the new 1-tick await behaviour This commit adds 3 tests ensuring the optimized behaviour of await (see https://github.com/tc39/ecma262/pull/1250) in the following cases: - async functions - yielding from async generator functions - for-await-of loops * AsyncFunction: Add tests ensuring the monkey-patched promises behaviour This commit adds 2 more tests ensuring the optimized behaviour of await (see tc39/ecma262#1250) in the following cases: - awaiting on a native promise with monkey-patched "then" - awaiting on a non-native promise (a "thenable" object) * AsyncFunction: Add tests ensuring the non-native promises behaviour This commit adds 1 more tests ensuring the optimized behaviour of await (see tc39/ecma262#1250) in the following cases: - awaiting on a non-promise, non-thenable object It also renames the previous test for non-promise (a "thenable" object) to distinguish from the new case. The commit adds checks for proper await/promises interleaving in the aforementioned cases and includes a small code clean-up. * AsyncFunction: Refactor tests ensuring the new 1-tick await behaviour Gather all the tests to their appropriate folder and update copyright header.
Showing
- test/language/expressions/await/async-await-interleaved.js 43 additions, 0 deletionstest/language/expressions/await/async-await-interleaved.js
- test/language/expressions/await/async-generator-interleaved.js 41 additions, 0 deletions...language/expressions/await/async-generator-interleaved.js
- test/language/expressions/await/await-monkey-patched-promise.js 49 additions, 0 deletions...anguage/expressions/await/await-monkey-patched-promise.js
- test/language/expressions/await/await-non-promise-thenable.js 55 additions, 0 deletions.../language/expressions/await/await-non-promise-thenable.js
- test/language/expressions/await/await-non-promise.js 43 additions, 0 deletionstest/language/expressions/await/await-non-promise.js
- test/language/expressions/await/for-await-of-interleaved.js 57 additions, 0 deletionstest/language/expressions/await/for-await-of-interleaved.js
Loading
Please register or sign in to comment