mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
Allows for persisting SSBs to storage for realoading in a later app instance. Also adds a command line argument to load and open an SSB based on its ID. Differential Revision: https://phabricator.services.mozilla.com/D56289 --HG-- extra : moz-landing-system : lando
8 lines
283 B
JavaScript
8 lines
283 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Basic check. There should be no SSBs in an empty profile.
|
|
add_task(async () => {
|
|
let ssbs = await SiteSpecificBrowserService.list();
|
|
Assert.equal(ssbs.length, 0);
|
|
});
|