blob: 33224aa86dbcff4069e4414292c724d683a801e7 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
describe("parsing freestanding async functions", () => {
test("simple", () => {
expect(`async function foo() {}`).toEval();
expect(`async
function foo() {}`).not.toEval();
});
test("await expression", () => {
expect(`async function foo() { await bar(); }`).toEval();
expect(`async function foo() { await; }`).not.toEval();
expect(`function foo() { await bar(); }`).not.toEval();
expect(`function foo() { await; }`).toEval();
});
});
describe("parsing object literal async functions", () => {
test("simple", () => {
expect(`x = { async foo() { } }`).toEval();
expect(`x = { async
foo() { } }`).not.toEval();
});
test("await expression", () => {
expect(`x = { foo() { await bar(); } }`).not.toEval();
expect(`x = { foo() { await; } }`).toEval();
expect(`x = { async foo() { await bar(); } }`).toEval();
expect(`x = { async foo() { await; } }`).not.toEval();
});
});
describe("parsing classes with async methods", () => {
test("simple", () => {
expect(`class Foo { async foo() {} }`).toEval();
expect(`class Foo { static async foo() {} }`).toEval();
expect(`class Foo { async foo() { await bar(); } }`).toEval();
expect(`class Foo { async foo() { await; } }`).not.toEval();
expect(`class Foo { async constructor() {} }`).not.toEval();
});
});
test("function expression names equal to 'await'", () => {
expect(`async function foo() { (function await() {}); }`).toEval();
expect(`async function foo() { function await() {} }`).not.toEval();
});
test("basic functionality", () => {
test("simple", () => {
let executionValue = null;
let resultValue = null;
async function foo() {
executionValue = "someValue";
return "otherValue";
}
const returnValue = foo();
expect(returnValue).toBeInstanceOf(Promise);
returnValue.then(result => {
resultValue = result;
});
runQueuedPromiseJobs();
expect(executionValue).toBe("someValue");
expect(resultValue).toBe("otherValue");
});
test("await", () => {
let resultValue = null;
async function foo() {
return "someValue";
}
async function bar() {
resultValue = await foo();
}
bar();
runQueuedPromiseJobs();
expect(resultValue).toBe("someValue");
});
});
|