Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: LayoutTests/http/tests/serviceworker/resources/skip-waiting-worker.js

Issue 765323002: ServiceWorker: Add support for .skipWaiting and controllerchange event(3/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add new test Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 importScripts('worker-testharness.js');
2
3 promise_test(function() {
4 return self.skipWaiting()
5 .then(function(result) {
6 assert_equals(result, undefined,
7 'Promise should be resolved with undefined');
8 })
9 .then(function() {
10 var promises = [];
11 for (var i = 0; i < 8; ++i)
12 promises.push(skipWaiting());
13 return Promise.all(promises);
14 })
15 .then(function(results) {
16 results.forEach(function(r) {
17 assert_equals(r, undefined,
18 'Promises should be resolved with undefined');
19 });
20 });
21 }, 'skipWaiting');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698