diff options
Diffstat (limited to 'lib/output/modifiers/__tests__/fetchRemoteImages.js')
-rw-r--r-- | lib/output/modifiers/__tests__/fetchRemoteImages.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/output/modifiers/__tests__/fetchRemoteImages.js b/lib/output/modifiers/__tests__/fetchRemoteImages.js index f5610a2..bc1704d 100644 --- a/lib/output/modifiers/__tests__/fetchRemoteImages.js +++ b/lib/output/modifiers/__tests__/fetchRemoteImages.js @@ -12,7 +12,7 @@ describe('fetchRemoteImages', function() { dir = tmp.dirSync(); }); - pit('should download image file', function() { + it('should download image file', function() { var $ = cheerio.load('<img src="' + URL + '" />'); return fetchRemoteImages(dir.name, 'index.html', $) @@ -24,7 +24,7 @@ describe('fetchRemoteImages', function() { }); }); - pit('should download image file and replace with relative path', function() { + it('should download image file and replace with relative path', function() { var $ = cheerio.load('<img src="' + URL + '" />'); return fetchRemoteImages(dir.name, 'test/index.html', $) |