[w3c/ServiceWorker] activate event not working with async function (#1388)

```
self.addEventListener(
  'activate',
  function (event) {
    event.waitUntil(activateHandler())
  }
);
```

The following function does not get called, I tried with normal async but nothing is not working
```
async function activateHandler(){
  //Async code here
}
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/ServiceWorker/issues/1388

Received on Thursday, 14 February 2019 07:03:34 UTC