1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/components/thumbnails/test/browser_thumbnails_bg_basic.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,13 @@ 1.4 +/* Any copyright is dedicated to the Public Domain. 1.5 + * http://creativecommons.org/publicdomain/zero/1.0/ */ 1.6 + 1.7 +function runTests() { 1.8 + let url = "http://www.example.com/"; 1.9 + ok(!thumbnailExists(url), "Thumbnail should not be cached yet."); 1.10 + 1.11 + let capturedURL = yield bgCapture(url); 1.12 + is(capturedURL, url, "Captured URL should be URL passed to capture"); 1.13 + 1.14 + ok(thumbnailExists(url), "Thumbnail should be cached after capture"); 1.15 + removeThumbnail(url); 1.16 +}