blob: 6a94e5c98edffd40146813758d6fa387eb1ea3db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
/**
* This test is mainly to verify clearing of storages for private browsing.
*/
async function testSteps() {
const packages = [
"clearStoragesForPrivateBrowsing_profile",
"defaultStorageDirectory_shared",
];
info("Clearing");
let request = clear();
await requestFinished(request);
info("Verifying storage");
verifyStorage(packages, "beforeInstall");
info("Installing package");
installPackages(packages);
info("Verifying storage");
verifyStorage(packages, "afterInstall");
info("Clearing private browsing");
request = clearPrivateBrowsing();
await requestFinished(request);
info("Verifying storage");
verifyStorage(packages, "afterClearPrivateBrowsing");
}
|