forked from mirrors/gecko-dev
Differential Revision: https://phabricator.services.mozilla.com/D69257 --HG-- extra : moz-landing-system : lando
16 lines
279 B
JavaScript
16 lines
279 B
JavaScript
"use strict";
|
|
|
|
function run_test() {
|
|
do_get_profile();
|
|
|
|
var storage = getCacheStorage("disk");
|
|
storage.asyncDoomURI(
|
|
createURI("http://non-existing/"),
|
|
"",
|
|
new EvictionCallback(false, function() {
|
|
finish_cache2_test();
|
|
})
|
|
);
|
|
|
|
do_test_pending();
|
|
}
|