Add missing includes for await tests (#1874)

This commit is contained in:
André Bargull 2018-10-18 09:02:25 -07:00 committed by Leo Balter
parent cb4bc7130e
commit 100b3b4afe
6 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,7 @@ description: >
meaning await takes only 1 tick on the microtask queue.
flags: [async]
features: [async-functions]
includes: [compareArray.js]
---*/
const actual = [];

View File

@ -9,6 +9,7 @@ description: >
interleaved, meaning await takes only 1 tick on the microtask queue.
flags: [async]
features: [async-functions]
includes: [compareArray.js]
---*/
const actual = [];

View File

@ -10,6 +10,7 @@ description: >
https://github.com/tc39/ecma262/pull/1250#issuecomment-401082195
flags: [async]
features: [async-functions]
includes: [compareArray.js]
---*/
let thenCallCount = 0;

View File

@ -9,6 +9,7 @@ description: >
will still get called.
flags: [async]
features: [async-functions]
includes: [compareArray.js]
---*/
let thenCallCount = 0;

View File

@ -9,6 +9,7 @@ description: >
will still get called.
flags: [async]
features: [async-functions]
includes: [compareArray.js]
---*/
const value = 1;

View File

@ -9,6 +9,7 @@ description: >
meaning await in for-of loop takes only 1 tick on the microtask queue.
flags: [async]
features: [async-functions, async-iteration]
includes: [compareArray.js]
---*/
const actual = [];