summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/fail-on-fetch-worker.js
blob: 517f289fbc8e43b1d540a47761538fe84b121c48 (plain)
1
2
3
4
5
importScripts('worker-testharness.js');

this.addEventListener('fetch', function(event) {
    event.respondWith(new Response('ERROR'));
  });