Bug 1686727 - [devtools] Disable browser_storage_webext_storage_local on fission. r=ladybenko

This test is not relevant in fission as we aren't using listStores,
nor do we have any EXTENSION_STORAGE resource to test yet.

Differential Revision: https://phabricator.services.mozilla.com/D116483
This commit is contained in:
Alexandre Poirot 2021-06-10 21:26:14 +00:00
Родитель 68dc58276a
Коммит cbf6187290
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -13,6 +13,15 @@ add_task(async function set_enable_extensionStorage_pref() {
add_task(
async function test_extensionStorage_disabled_for_non_extension_target() {
if (isFissionEnabled()) {
ok(
true,
"This test is not relevant when fission is enabled as we aren't using listStores"
);
// And we don't implement the EXTENSION_STORAGE Resource yet
return;
}
info(
"Setting up and connecting DevTools Server and Client in main process"
);