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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/fetch-event.https.html

Issue 2826573004: fetch-event.https.html: Fix asserts mistakenly outside the promise chain (Closed)
Patch Set: rm flaky expectation Created 3 years, 8 months 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/fetch-event.https.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/fetch-event.https.html b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/fetch-event.https.html
index 8d0531ea7e6a2d42f5163291af7fcdcd36dc876f..e4c49ac50ae7ca4d9ecee2488f03c7fc0e37bd58 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/fetch-event.https.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/fetch-event.https.html
@@ -516,6 +516,7 @@ async_test(function(t) {
})
.catch(unreached_rejection(t));
}, 'Service Worker should expose FetchEvent URL fragments.');
+
async_test(function(t) {
var scope = 'resources/simple.html?cache';
var frame;
@@ -549,6 +550,7 @@ async_test(function(t) {
.catch(reject);
});
});
+ return Promise.all(tests);
})
.then(function() {
return new Promise(function(resolve, reject) {

Powered by Google App Engine
This is Rietveld 408576698