blob: 027e0bfb7450d38d8be386f6ff01da17575b0bcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
function* runTests() {
let url = "http://www.example.com/";
ok(!thumbnailExists(url), "Thumbnail should not be cached yet.");
let capturePromise = new Promise(resolve => {
bgAddPageThumbObserver(url).then(() => {
ok(true, `page-thumbnail created for ${url}`);
resolve();
});
});
let capturedURL = yield bgCapture(url);
is(capturedURL, url, "Captured URL should be URL passed to capture");
yield capturePromise;
ok(thumbnailExists(url), "Thumbnail should be cached after capture");
removeThumbnail(url);
}
|