== should format the await expression ==
async function test() {
    await   test;
}

[expect]
async function test() {
    await test;
}

== should format a top level await ==
await    test   ;
const t =   await   test  ;

[expect]
await test;
const t = await test;
