(s)
| 6 | function foo() {} |
| 7 | |
| 8 | function wrapInLazyFunction(s) { |
| 9 | // Use an async function, since some tests use the await keyword. |
| 10 | return "async function test() { " + s + "}"; |
| 11 | } |
| 12 | |
| 13 | function wrapInEagerFunction(s) { |
| 14 | // Use an async function, since some tests use the await keyword. Await the |
no outgoing calls
no test coverage detected