blob: fec457c784ffe4ebca290793fae946a2d50f4de6 [file] [log] [blame]
<!doctype html><!-- webkit-test-runner [ ShouldUseServiceWorkerShortTimeout=true ] -->
<html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/routines.js"></script>
</head>
<body>
<script>
promise_test(async (test) => {
const registration = await navigator.serviceWorker.register("service-worker-spinning-worker.js", { scope : "spin-push" });
const worker = registration.installing;
await waitForState(registration.installing, "activated");
await sendSyncMessage(worker, "push");
return waitForServiceWorkerNoLongerRunning(worker);
}, "Spin in push");
promise_test(async (test) => {
const registration = await navigator.serviceWorker.register("service-worker-spinning-worker.js", { scope : "spin-after-push" });
const worker = registration.installing;
await waitForState(registration.installing, "activated");
await sendSyncMessage(worker, "push");
return waitForServiceWorkerNoLongerRunning(worker);
}, "Spin after push");
</script>
</body>
</html>