blob: 5d7ada400fde684d77ee57f0978bef1238eab2f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Basic Smoke Test
async function* asyncGen(n) {
for (let i = 0; i < n; i++) {
yield i * 2;
}
}
function test() {
Array.fromAsync(asyncGen(4)).then((x) => {
assertEq(Array.isArray(x), true);
assertEq(x.length, 4);
assertEq(x[0], 0);
assertEq(x[1], 2);
assertEq(x[2], 4);
assertEq(x[3], 6);
done = true;
}
);
drainJobQueue();
}
oomTest(test);
|