https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ae999f1c2fe70a3195d00d214002242227b63b62 authored by Luke Bjerring on 16 May 2018, 02:06:44 UTC
Fix nits as per review
Tip revision: ae999f1
sw.js
importScripts('/resources/testharness.js')

promise_test(async (test) => {
  return fetch('./sw.js').then(function(response) {
    assert_not_equals(typeof performance.getEntriesByName(response.url)[0].serverTiming,
      'undefined',
      'An instance of `PerformanceResourceTiming` should have a `serverTiming` attribute in the Service Worker context.')
    done()
  })
})
back to top