OLD | NEW |
---|---|
(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 num = 8; | |
11 var promises = []; | |
12 for (var i = 0; i < num; ++i) | |
13 promises.push(skipWaiting()); | |
14 return Promise.all(promises) | |
15 .then(function(results) { | |
falken
2014/12/04 06:15:38
nit: you can save indentation by shifting this fun
xiang
2014/12/11 11:24:32
Done.
| |
16 results.forEach(function(r) { | |
17 assert_equals(r, undefined, | |
18 'Promises should be resolved with undefined'); | |
19 }); | |
20 }); | |
21 }); | |
22 }, 'skipWaiting'); | |
OLD | NEW |