forked from mirrors/gecko-dev
Automatic update from web-platform-testsStorage API: Use .any.js (etc) in Web Platform Tests Use ".any.js" tests [1] rather than redundant files for window and worker variations, and increase coverage where window-only tests existed. Also use ".worker.js" and ".window.js" to eliminate some boilerplate. The one manual test is left untouched for ease of running... manually. [1] https://web-platform-tests.org/writing-tests/testharness.html Change-Id: I7be790e0134854c804dbf82072589f07fa6e0bfb Reviewed-on: https://chromium-review.googlesource.com/1194324 Reviewed-by: Chase Phillips <cmp@chromium.org> Commit-Queue: Joshua Bell <jsbell@chromium.org> Cr-Commit-Position: refs/heads/master@{#586773} -- wpt-commits: ba92a402d8f994a92c73b22a153fd7aea89247c3 wpt-pr: 12723
10 lines
427 B
JavaScript
10 lines
427 B
JavaScript
// META: title=StorageManager: persisted()
|
|
|
|
promise_test(function() {
|
|
var promise = navigator.storage.persisted();
|
|
assert_true(promise instanceof Promise,
|
|
'navigator.storage.persisted() returned a Promise.');
|
|
return promise.then(function (result) {
|
|
assert_equals(typeof result, 'boolean', result + ' should be boolean');
|
|
});
|
|
}, 'navigator.storage.persisted() returns a promise that resolves.');
|