summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/oninstall-waituntil-forever.js
blob: 964483f2f42732755b2400e01f66439d647a339f (plain)
1
2
3
4
5
6
7
8
'use strict';

self.addEventListener('install', event => {
  event.waitUntil(new Promise(() => {
        // Use a promise that never resolves to prevent this service worker from
        // advancing past the 'installing' state.
      }));
});